Bijection
Node.js utility that maps an input Object "x" to an output Object "y" via a bijective function "f"
Install / Use
/learn @tjwebb/BijectionREADME
bijection
Map an input Object x to an output Object y via a bijective function f, i.e. f: X -> Y
Install
$ npm install bijection --save
Usage
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'
* };
*/
API
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
License
MIT
Related Skills
node-connect
347.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
108.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
347.2kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
