https://github.com/shexSpec/shex.js
Raw File
Tip revision: 78124b501cca70643d114ace026c48da0943f969 authored by Eric Prud'hommeaux on 04 January 2023, 03:25:35 UTC
~ split validate invocation into separately-named functions
Tip revision: 78124b5
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