fast-xml-builder
Advanced tools
+4
-0
| **1.1.2** (2026-03-11) | ||
| - fix typings | ||
| **1.1.1** (2026-03-11) | ||
@@ -4,0 +8,0 @@ - upgrade path-expression-matcher to 1.1.3 |
+7
-8
@@ -160,14 +160,13 @@ const { Expression } = require('path-expression-matcher'); | ||
| declare class XMLBuilder { | ||
| constructor(options?: XmlBuilderOptions); | ||
| interface XMLBuilder { | ||
| build(jObj: any): string; | ||
| } | ||
| declare namespace fxpBuilder { | ||
| export { | ||
| XMLBuilder, | ||
| XmlBuilderOptions, | ||
| } | ||
| interface XMLBuilderConstructor { | ||
| new(options?: XmlBuilderOptions): XMLBuilder; | ||
| (options?: XmlBuilderOptions): XMLBuilder; | ||
| } | ||
| export = fxpBuilder; | ||
| declare const Builder: XMLBuilderConstructor; | ||
| export = Builder; |
+1
-1
| { | ||
| "name": "fast-xml-builder", | ||
| "version": "1.1.1", | ||
| "version": "1.1.2", | ||
| "description": "Build XML from JSON without C/C++ based libraries", | ||
@@ -5,0 +5,0 @@ "main": "./lib/fxb.cjs", |
+11
-3
@@ -159,5 +159,13 @@ import { Expression } from 'path-expression-matcher'; | ||
| export class XMLBuilder { | ||
| constructor(options?: XmlBuilderOptions); | ||
| export interface XMLBuilder { | ||
| build(jObj: any): string; | ||
| } | ||
| } | ||
| export interface XMLBuilderConstructor { | ||
| new(options?: XmlBuilderOptions): XMLBuilder; | ||
| (options?: XmlBuilderOptions): XMLBuilder; | ||
| } | ||
| declare const Builder: XMLBuilderConstructor; | ||
| export default Builder; |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
153636
0.16%958
0.52%