Package Exports
- @putout/operator-json
- @putout/operator-json/lib/json.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@putout/operator-json) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@putout/operator-json 
🐊Putout operator adds ability to lint json.
Install
npm i putout @putout/operator-jsonAPI
__json
export const traverse = ({
[__json]: (path) => {
},
});__filesystem
export const traverse = ({
[__filesystem]: (path) => {
},
});toJS(source: string, name?: string);
toJS('{"hello": "world"}');
// returns
`__putout_processor_json('{"hello": "world"});`;
toJS('{"hello": "world"}', __filesystem);
// returns
`__putout_processor_filesystem('{"hello": "world"});`;fromJS(source: string, name?: string);
fromJS(`__putout_processor_json('{"hello": "world"}');
// returns
`{"hello": "world"}`;License
MIT