Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@putout/operator-json
Advanced tools
🐊Putout operator adds ability to json referenced variables that was not defined
🐊Putout operator adds ability to lint json.
npm i putout @putout/operator-json
__json
import {operator} from 'putout';
const {__json} = operator;
export const traverse = ({push}) => ({
[__json]: push,
});
__yaml
import {operator} from 'putout';
const {__yaml} = operator;
export const traverse = ({push}) => ({
[__yaml]: push,
});
__ignore
import {operator} from 'putout';
const {__ignore} = operator;
export const traverse = ({push}) => ({
[__ignore]: push,
});
__filesystem
import {operator} from 'putout';
const {__filesystem} = operator;
export const traverse = ({push}) => ({
[__filesystem]: (path) => {
push(path);
},
});
isJSON(source: string)
isJSON(`__putout_processor_json({"hello": "world"});`);
// returns
true;
isJSON(`hello({"hello": "world"});`);
// returns
false;
toJS(source: string, name?: string)
;import {operator} from 'putout';
const {__filesystem, toJS} = operator;
toJS('{"hello": "world"}');
// returns
`__putout_processor_json('{"hello": "world"});`;
toJS('{"hello": "world"}', __filesystem);
// returns
`__putout_processor_filesystem('{"hello": "world"});`;
fromJS(source: string, name?: string)
;import {operator} from 'putout';
const {fromJS} = operator;
fromJS(`__putout_processor_json('{"hello": "world"}'`);
// returns
`{"hello": "world"}`;
MIT
FAQs
🐊Putout operator adds ability to json referenced variables that was not defined
The npm package @putout/operator-json receives a total of 1,634 weekly downloads. As such, @putout/operator-json popularity was classified as popular.
We found that @putout/operator-json demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.