@ardatan/fast-json-stringify
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "@ardatan/fast-json-stringify", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Stringify your JSON at max speed", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -207,6 +207,2 @@ import Ajv, { Options as AjvOptions } from "ajv" | ||
interface StandaloneOption extends build.Options { | ||
mode: 'standalone' | ||
} | ||
/** | ||
@@ -219,3 +215,2 @@ * Build a stringify function using a schema of the documents that should be stringified | ||
declare function build(schema: build.AnySchema, options: DeprecateDebugOption): { code: string, ajv: Ajv }; | ||
declare function build(schema: build.AnySchema, options: StandaloneOption): string; | ||
declare function build(schema: build.AnySchema, options?: build.Options): <TDoc = any>(doc: TDoc) => any; | ||
@@ -222,0 +217,0 @@ declare function build(schema: build.StringSchema, options?: build.Options): <TDoc extends string = string>(doc: TDoc) => string; |
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
349640
13039