Revision d9573f01cb34580f083b64981e5a96ff0b755486 authored by Eric Prud'hommeaux on 25 February 2023, 01:16:31 UTC, committed by Eric Prud'hommeaux on 25 February 2023, 01:28:05 UTC
1 parent 8965217
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