项目作者: jsmini

项目描述 :
一组函数式编程工具函数
高级语言: JavaScript
项目地址: git://github.com/jsmini/functional.git
创建时间: 2019-03-18T14:24:32Z
项目社区:https://github.com/jsmini/functional

开源协议:MIT License

下载


functional


license
CI
@jsmini/functional">npm
@jsmini/functional"">NPM downloads
Percentage of issues still open

A set of functional programming utility functions.

English | 简体中文

Environment Support

unit test ensure it supports the following environments.

IE/Edge Chrome Firefox Safari Opera IOS Android Node
6+ 23+ 4+ 6+ 10+ 5+ 2.3+ 0.10+

Directory

  1. .
  2. ├── demo
  3. ├── dist # production code
  4. ├── doc # document
  5. ├── src # source code
  6. ├── test # unit test
  7. ├── CHANGELOG.md
  8. └── TODO.md

Usage

npm installation

  1. $ npm install --save @jsmini/functional

Node.js

  1. var name = require('@jsmini/functional').name;

webpack

  1. import { name } from '@jsmini/functional';

Require.js

  1. requirejs(
  2. ['node_modules/@jsmini/functional/dist/index.aio.js'],
  3. function (jsmini_functional) {
  4. var name = jsmini_functional.name;
  5. },
  6. );

Browser

  1. <script src="node_modules/@jsmini/functional/dist/index.aio.js"></script>
  2. <script>
  3. var name = jsmini_functional.name;
  4. </script>

Document

" class="reference-link">Contributing Guide PRs welcome

when initialize, install dependencies

  1. $ npm install

builds your code for production to build folder

  1. $ npm run build

run unit test. notice: borwser enviroment need to test manually. test file is in test/browser

  1. $ npm test

change the version in package.json and README.md, add your description in CHANGELOG.md, and then release it happily.

  1. $ npm run release

publish the new package to npm

  1. $ npm publish --access=public

rename project. you need to edit project name when initialize project or anytime you want to rename the project . you need to rename formName and toname in file rename.js,which will automatically rename project name in the following files

  • README.md
  • package.json
  • config/rollup.js
  • test/browser/index.html
  1. $ npm run rename # rename command

Contributors

contributors

CHANGELOG

CHANGELOG.md

TODO

TODO.md

who is using