UNPKG

@nodescript/core

Version:

Visual programming language for Browser and Node

24 lines 633 B
import { matchPath } from '@nodescript/pathmatcher'; import { get, set } from '@nodescript/pointer'; import { getType, Schema } from 'airtight'; import { anyContains, anyEquals } from './compare.js'; import { fetchRelay } from './fetch.js'; import { parseJson } from './json.js'; import { merge } from './merge.js'; import { toRegExp } from './regexp.js'; export const runtimeLib = { getType, getSchema(schema) { return new Schema(schema); }, anyEquals, anyContains, get, set, merge, parseJson, toRegExp, matchPath, fetch: fetchRelay, }; //# sourceMappingURL=runtime-lib.js.map