npm.io
1.0.8 • Published 8 years ago

hexlet-pairs

Licence
ISC
Version
1.0.8
Deps
0
Size
195 kB
Vulns
0
Weekly
0
Stars
35
DeprecatedThis package is deprecated

js-pairs

Install

npm install hexlet-pairs --save

Using

import { cons, car, cdr, toString } from 'hexlet-pairs';

const pair = cons(3, 5);
car(pair); // 3
cdr(pair); // 5
toString(pair); // (3, 5)