https://github.com/qard/ensure-function
Transform JS function code, function bodies, modules, or files into valid functions using AST transform and VM wizardry.
https://github.com/qard/ensure-function
ast ensure function nodejs transform
Last synced: 3 months ago
JSON representation
Transform JS function code, function bodies, modules, or files into valid functions using AST transform and VM wizardry.
- Host: GitHub
- URL: https://github.com/qard/ensure-function
- Owner: Qard
- Created: 2018-12-01T18:29:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T01:50:29.000Z (about 6 years ago)
- Last Synced: 2024-04-13T22:12:22.119Z (about 1 year ago)
- Topics: ast, ensure, function, nodejs, transform
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ensure-function
Transform JS function code, function bodies, modules, or files into valid functions using AST transform and VM wizardry.
## Install
```sh
npm install ensure-function
```## Example
```js
const ensureFunction = require('ensure-function')const square = ensureFunction('item * item', ['item'])
const sum = ensureFunction('(memo || 0) + item', ['memo', 'item'])const items = [ 1, 2, 3 ]
const squareSums = items.map(square).reduce(sum)
```---
### Copyright (c) 2018 Stephen Belanger
#### Licensed under MIT LicensePermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.