
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@putout/plugin-declare
Advanced tools
🐊Putout plugin adds ability to declare variable that was not defined before, including:
maybeArray
, maybeFn
, maybeEmptyArray
;not
,id
, returns
;freshImport
, freshImportDefault
;fixtures
: readFixture
;Object
;npm i putout @putout/plugin-declare -D
Add .putout.json
with:
{
"plugins": {
"declare": "on"
}
}
Use options:
dismiss
for variables you don't want to declare;declarations
to declare variables;{
"rules": {
"declare": ["on", {
"declarations": {
"hello": "import {hello} from 'world'"
},
"dismiss": [
"assert",
"entries",
"parse",
"stringify",
"defineProperty",
"noop",
"join",
"keys",
"values",
"stopAll",
"once",
"putout",
"simport"
]
}]
}
}
assign
const hello = 'world';
const object = {};
assign(object, {
hello,
});
const hello = 'world';
const object = {};
const {assign} = Object;
assign(object, {
hello,
});
keys
const hello = 'world';
const object = {};
const allKeys = keys(object);
const hello = 'world';
const object = {};
const {keys} = Object;
const allKeys = keys(object);
values
const object = {};
const allValues = values(object);
const {values} = Object;
const object = {};
const allValues = values(object);
noop
noop();
const noop = () => {};
noop();
const isFn = (a) => typeof a === 'function';
if (isFn(fn))
fn();
const isFn = (a) => typeof a === 'function';
if (isFn(fn))
fn();
const a = [...maybeArray(b)];
const {isArray} = Array;
const maybeArray = (a) => isArray(a) ? a : [a];
const a = [...maybeArray(b)];
entries
entries([1, 2, 3]);
const {isArray} = Array;
const entries = (a) => isArray(a) ? a.entries() : Object.entries();
entries([1, 2, 3]);
fromEntries
fromEntries(['hello', 'world']);
const {fromEntries} = Object;
fromEntries(['hello', 'world']);
MIT
FAQs
🐊Putout plugin adds ability to declare variables
The npm package @putout/plugin-declare receives a total of 3,965 weekly downloads. As such, @putout/plugin-declare popularity was classified as popular.
We found that @putout/plugin-declare 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.