json-export-cli
v0.0.4
Published
Converts an exported javascript object to JSON
Readme
json-export
Converts an exported javascript object to JSON.
Installation
This module may be installed either globally:
npm i -g json-export-clior locally:
npm install --save-dev json-export-cliUsage
json-export my-object.jsExample
my-object.js
module.exports = {
sum: 1 + 2,
};Output
{"sum":3}