utils-fs-read-properties
Version:
Reads the entire contents of a .properties file.
44 lines (34 loc) • 812 B
JavaScript
;
// MODULES //
var readFile = require( 'utils-fs-read-file' ),
parse = require( 'utils-properties-parse' ),
isString = require( 'validate.io-string-primitive' );
// READ SYNC //
/**
* FUNCTION: readSync( path[, options] )
* Reads the entire contents of a .properties file.
*
* @param {String} path - file path
* @param {Object|String} [options] - function options
* @returns {Object|Error} JSON object or an error
*/
function readSync( path, options ) {
var file,
opts;
if (
arguments.length > 1 &&
!isString( options )
) {
opts = options;
} else {
opts = {};
}
opts.encoding = 'utf8';
file = readFile.sync( path, opts );
if ( file instanceof Error ) {
return file;
}
return parse( file, opts );
} // end FUNCTION readSync()
// EXPORTS //
module.exports = readSync;