evangelist
Advanced tools
Comparing version 0.8.1 to 0.8.2
@@ -1,3 +0,3 @@ | ||
import { pipe } from './pipe/'; | ||
import { wrap } from './wrap/'; | ||
import { pipe } from './pipe'; | ||
import { wrap } from './wrap'; | ||
export { pipe, wrap }; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const _1 = require("./pipe/"); | ||
exports.pipe = _1.pipe; | ||
const _2 = require("./wrap/"); | ||
exports.wrap = _2.wrap; | ||
const pipe_1 = require("./pipe"); | ||
exports.pipe = pipe_1.pipe; | ||
const wrap_1 = require("./wrap"); | ||
exports.wrap = wrap_1.wrap; | ||
//# sourceMappingURL=esm.js.map |
"use strict"; | ||
const _1 = require("./pipe/"); | ||
const _2 = require("./wrap/"); | ||
const pipe_1 = require("./pipe"); | ||
const wrap_1 = require("./wrap"); | ||
module.exports = { | ||
pipe: _1.pipe, | ||
wrap: _2.wrap | ||
pipe: pipe_1.pipe, | ||
wrap: wrap_1.wrap | ||
}; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "evangelist", | ||
"description": "Library for overriding or wrapping functions", | ||
"description": "Method library consists of reusable helper functions to help you save time", | ||
"keywords": [ | ||
@@ -12,3 +12,3 @@ "override", | ||
], | ||
"version": "0.8.1", | ||
"version": "0.8.2", | ||
"homepage": "", | ||
@@ -15,0 +15,0 @@ "author": "Eser Ozvataf <eser@ozvataf.com>", |
@@ -11,9 +11,16 @@ # [evangelist](https://github.com/eserozvataf/jsmake-libraries) | ||
Evangelist is a JavaScript library which allows you to override or wrap any function with another one. | ||
Evangelist is a modern JavaScript utility belt consists of reusable helper functions. | ||
Plus, as a library, Evangelist is completely tree-shanking-friendly. Your favorite module bundler can easily inline the functionality you need with no extra configuration, instead of bundling the whole Evangelist package. | ||
## Example Usage | ||
## Quick start | ||
Execute `npm install evangelist` to install evangelist and its dependencies into your project directory. | ||
## Usage | ||
```js | ||
import evangelist from 'evangelist'; | ||
import * as evangelist from 'evangelist'; | ||
@@ -41,5 +48,6 @@ // wrap - calculator sample | ||
## Quick start | ||
## List of modules | ||
Execute `npm install evangelist` to install evangelist and its dependencies into your project directory. | ||
- pipe | ||
- wrap | ||
@@ -46,0 +54,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6752
47
90