Revision afbe4476e3ef84ac24722ac2387bb7517f6baeae authored by Eric Prud'hommeaux on 04 March 2023, 07:50:05 UTC, committed by Eric Prud'hommeaux on 04 March 2023, 08:14:15 UTC
1 parent 9edc688
Raw File
shex.js
var ShEx = {
  // Parser:       require('@shexjs/parser'),
  // ShapeMapParser: require('shape-map').Parser,
  // ShapeMap:     require('shape-map'),
  // Util:         require('@shexjs/util'),
  // Validator:    require('@shexjs/validator'),
  // Node:       require('@shexjs/node'),
  // Writer:       require('@/shexjs/writer'),
  // 'eval-simple-1err':     require('@shexjs/eval-simple-1err'),
  // 'eval-threaded-nerr': require('@shexjs/eval-threaded-nerr'),
  N3:           require('n3'),
};

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

back to top