java-props
Advanced tools
Comparing version 2.1.0 to 2.1.1
/// <reference types="node" /> | ||
import { Properties, parse } from './java-props'; | ||
import { Properties, parse, stringify } from './java-props'; | ||
export * from './java-props'; | ||
@@ -8,3 +8,4 @@ export declare function parseFile(path: string | Buffer | URL | number, encoding?: string): Promise<Properties>; | ||
parseFile: typeof parseFile; | ||
stringify: typeof stringify; | ||
}; | ||
export default _default; |
@@ -33,3 +33,4 @@ "use strict"; | ||
parseFile, | ||
stringify: java_props_1.stringify, | ||
}; | ||
//# sourceMappingURL=node-java-props.js.map |
{ | ||
"name": "java-props", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Read Java .properties files (using the same specification), without useless additional features.", | ||
@@ -5,0 +5,0 @@ "author": "Nathan Poirier <nathan@poirier.io>", |
import fs from 'fs'; | ||
import {Properties, parse} from './java-props'; | ||
import {Properties, parse, stringify} from './java-props'; | ||
@@ -26,2 +26,3 @@ export * from './java-props'; | ||
parseFile, | ||
stringify, | ||
}; |
Sorry, the diff of this file is not supported yet
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
42559
876