Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
abbrev-kindof
Advanced tools
Use abbreviations for checking type of given value. Like `kindof(val, 'soa')` to check that value is string, object or array.
Use abbreviations for checking type of given value. Like
kindof(val, 'soa')
to check that value is string, object or array.
npm i abbrev-kindof --save
For more use-cases see the tests
const abbrevKindof = require('abbrev-kindof')
Check type of a
val
with abbreviations.
Params
val
{Mixed}: value to checktype
{String|Array}: list of single-letter (abbr) typesreturns
{Boolean}: if true
, so val
match one of the abbreviated typesExample
// `soa` here means - string, object or array
abbrevKindof(123, 'soa') //=> false
abbrevKindof('foo bar', 'soa') //=> true
abbrevKindof({a: 123}, 'soa') //=> true
abbrevKindof(['c', 'd'], 'soa') //=> true
Using map-types
a
for array
b
for boolean
f
for function
n
for number
o
for object
r
for regexp
s
for string
y
for symbol
kind-of
module. | homepagekind-of
type check utility with support for promises, generators, streams and errors. Like kindof(Promise.resolve(1)) === 'promise'
and etc. | homepagePull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.
FAQs
Use abbreviations for checking type of given value. Like `kindof(val, 'soa')` to check that value is string, object or array.
We found that abbrev-kindof demonstrated a not healthy version release cadence and project activity because the last version was released 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.