semantic-network
Version:
A utility library for manipulating a list of links that form a semantic interface to a network of resources.
8 lines • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.instanceOfSimpleValue = void 0;
function instanceOfSimpleValue(obj) {
return typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || typeof obj === 'undefined';
}
exports.instanceOfSimpleValue = instanceOfSimpleValue;
//# sourceMappingURL=instanceOfSimpleValue.js.map