
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@distributed-systems/types
Advanced tools
Easy and reliable type detection with ES6+ support.
Compatible with node 10+ (--experimental-modules
flag) and browsers supporting es modules.
node.js with esm
import types from 'es-modules/distributed-systems/types/1.x/types.mjs';
node.js with npm
import types from '@distributed-systems/types';
Be aware that the different object types like Maps, Promises and so on are not
detected as objects but as their respective type. If you need to detect them as
objects please use the types.someObject()
method instead of the types.object()
method.
Explicitly test for a type.
types.array([]) // true
Get the type of some variable
types(/[a-z]+/gi) // regexp
Since many of the types defined by javascript are just special objects that also can be treated as normal objects ee-types has a bunch of methods that allow you to handle that correctly.
For example, Map
is an object, or a custom class where you
define a getter that returns a specific name for your object:
const X = class {
get [Symbol.toStringTag]() {
return 'AQL query';;
}
};
console.log(Object.prototype.toString.call(new X()));
// prints: [object AQL Query]
types.object({}); // true
types.object(new Map()); // false
// be aware that if you are not explicitly testing
// for an object any object will be treated as one
types({}) // 'object'
types(new Map()) // 'object'
types.someObject({}); // true
types.someObject(new Map()); // false
types(new Map()) // 'object'
var types = require('ee-types');
types.string('nope'); // true
types.strign(new String('yeah')); // true
types(2) // number
types([]]) // array
types(new Array()]) // array
types(new Int8Array()]) // int8Array
types.promise(Promise.all()) // true
FAQs
Reliable & easy Js & ES Type detection
We found that @distributed-systems/types 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.