@rdfjs/data-model
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -193,2 +193,6 @@ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.rdf = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){ | ||
if (original.termType === 'DefaultGraph') { | ||
return this.defaultGraph() | ||
} | ||
if (original.termType === 'Literal') { | ||
@@ -195,0 +199,0 @@ return this.literal(original.value, original.language || this.namedNode(original.datatype.value)) |
@@ -10,2 +10,6 @@ function fromTerm (original) { | ||
if (original.termType === 'DefaultGraph') { | ||
return this.defaultGraph() | ||
} | ||
if (original.termType === 'Literal') { | ||
@@ -12,0 +16,0 @@ return this.literal(original.value, original.language || this.namedNode(original.datatype.value)) |
{ | ||
"name": "@rdfjs/data-model", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "A basic implementation of the RDFJS Data Model", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -19,2 +19,10 @@ const { notStrictEqual, strictEqual, throws } = require('assert') | ||
it('should create a clone of the given DefaultGraph', () => { | ||
const original = DataFactory.defaultGraph() | ||
const term = DataFactory.fromTerm(original) | ||
strictEqual(term.equals(original), true) | ||
}) | ||
it('should create a clone of the given Literal', () => { | ||
@@ -21,0 +29,0 @@ const original = DataFactory.literal('example') |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
47447
1017
0