Revision 28f0448b0c85800f154133e2805bc21b8583f9b0 authored by Eric Prud'hommeaux on 17 February 2018, 20:12:57 UTC, committed by Eric Prud'hommeaux on 17 February 2018, 20:12:57 UTC
2 parent s d72d04b + 6e7fafe
Raw File
shex.js
var ShEx = {
  Parser:       require('./lib/ShExParser'),
  ShapeMapParser: require('./lib/ShapeMapParser'),
  Util:         require('./lib/ShExUtil'),
  Validator:    require('./lib/ShExValidator'),
  Loader:       require('./lib/ShExLoader'),
  Writer:       require('./lib/ShExWriter'),
  'nfax-val-1err':     require('./lib/regex/nfax-val-1err'),
  'threaded-val-nerr': require('./lib/regex/threaded-val-nerr'),
  N3:           require('n3'),
};

if (typeof require !== 'undefined' && typeof exports !== 'undefined')
  module.exports = ShEx;

back to top