UNPKG

@spacingbat3/lss

Version:

LSS: Literal String Sanitizer – sanitizes string based on specific inputs and tries to guess the accurate type (in TypeScript/Typed JS).

17 lines 344 B
/* * ESM wrapper for "./lib.js" */ // Module exports import {parseableRange, sanitizeLiteral} from "./lib.js"; export default sanitizeLiteral; export { parseableRange, sanitizeLiteral }; // Type exports import type { charset, sanitizeResult, unknownLiteral } from "./lib.js"; export type { charset, sanitizeResult, unknownLiteral };