Package Exports
- functionfoundry
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (functionfoundry) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
FunctionFoundry is a modern ES6/JavaScript library with an interface similar to spreadsheet functions.
quickstart
npm install --save functionfoundryvar { and, eq, len, gt, lt, isnumber, isText, isEmail, isEmpty, lower, proper, text, date} = require('functionfoundry')
// print `true`
console.log(
and(
isnumber(1),
isText('this is'),
isEmail('me@gmail.com'),
isEmpty(''),
gt(2, 1),
lt(1, 2),
eq(len('foo'), 3),
eq(lower('HAPPY'), 'happy'),
eq(proper('happy'), 'Happy'),
eq(text(4200.00, "$#,###.00"), '$4,200.00'),
eq(text(date(2000, 2, 1), "m-d-yyyy"), '2-1-2000')
)
)naming convention
All function names are lowercase by default. Select functions include camelCase aliases.
organization
| name | purpose |
|---|---|
| dist | Browser ready files |
| doc | Annotated source code generated by groc |
| lib | Rolled up source code for Node.js or browserify/Webpack |
| scripts | Developer tools |
| src | Original source code |
| test | Unit test code |