文件名称:pdef:预定义或后定义表达式参数
文件大小:51KB
文件格式:ZIP
更新时间:2024-05-18 04:39:44
JavaScript
预定义或后定义表达式参数 定义 预定义和后定义 安装 NPM npm install --save pdef 用法 const postdef = require ( 'pdef' ) . postdef ; const predef = require ( 'pdef' ) . predef ; // or import { postdef , predef } from 'pdef' ; const squarePost = ( a , b , c ) => postdef ( ( { p } ) => Math . sqrt ( p * ( p - a ) * ( p - b ) * ( p - c ) ) ) . where ( { p : ( a + b + c ) / 2 } ) ; const squarePre = ( a , b , c ) => predef (
【文件预览】:
pdef-master
----.gitignore(19B)
----README.md(622B)
----LICENSE(1KB)
----package.json(787B)
----dist()
--------pdef.js(956B)
----src()
--------pdef.js(147B)
----.babelrc(25B)
----.eslintignore(5B)
----webpack.config.js(667B)
----yarn.lock(181KB)
----.eslintrc.json(285B)