https://github.com/shexSpec/shex.js
Raw File
Tip revision: 231fb8550b956bdae3bb611c0131739800c8c835 authored by Eric Prud'hommeaux on 19 January 2023, 12:40:20 UTC
~ simplifying validateShape()
Tip revision: 231fb85
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