@jplorg/jpl
Version:
JPL interpreter
22 lines (21 loc) • 1.04 kB
JavaScript
export { default as contains } from './funcContains';
export { default as endsWith } from './funcEndsWith';
export { default as error } from './funcError';
export { default as fromJSON } from './funcFromJSON';
export { default as has } from './funcHas';
export { default as in } from './funcIn';
export { default as keys } from './funcKeys';
export { default as length } from './funcLength';
export { default as now } from './funcNow';
export { default as startsWith } from './funcStartsWith';
export { default as toJSON } from './funcToJSON';
export { default as toLowerCase } from './funcToLowerCase';
export { default as toNumber } from './funcToNumber';
export { default as toString } from './funcToString';
export { default as toUpperCase } from './funcToUpperCase';
export { default as trim } from './funcTrim';
export { default as trimEnd } from './funcTrimEnd';
export { default as trimStart } from './funcTrimStart';
export { default as type } from './funcType';
export { default as void } from './funcVoid';
export * from './math';