
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Node.js utility for mapping the properties of two Objects between each other
Map an input Object x
to an output Object y
via a bijective function f
, i.e. f: X -> Y
$ npm install bijection --save
var Bijection = require('bijection');
var LegacyAccount = {
identity: 'crmacct',
attributes: {
crmacct_id: 'integer',
crmacct_name: 'string'
}
};
var Account = {
identity: 'Account',
attributes: {
id: 'integer',
sobriquet: 'string',
}
};
var AccountBijection = new Bijection({
domain: Account,
codomain: [ LegacyAccount ],
mapping: {
id: 'crmacct_id',
sobriquet: 'crmacct_name'
}
});
var tjwebbLegacyAccount = AccountBijection.map({ id: 1, sobriquet: 'tjwebb' });
/**
* tjwebbLegacyAccount = {
* crmacct_id: 1,
* crmacct_name: 'tjwebb'
* };
*/
new Bijection(f)
Create a new bijection between two domains
@param | description |
---|---|
f.domain | The input domain |
f.codomain | The output domain |
f.mapping | Declarative object that indicates the mapping from X -> Y |
.map(x)
Map an input Object x
to an output Object y
via a bijective function f
, i.e. f: X -> Y
@param | description |
---|---|
x | The input object to map onto codomain Y |
@return | description |
y | A particular image of codomain Y resulting from mapping an input x onto it |
MIT
FAQs
Node.js utility for mapping the properties of two Objects between each other
We found that bijection 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.