@bunt/util
Advanced tools
Comparing version 0.15.9 to 0.15.11
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.15.11](https://github.com/izatop/bunt/compare/v0.15.10...v0.15.11) (2021-03-04) | ||
### Bug Fixes | ||
* gql proto hooks ([d593b30](https://github.com/izatop/bunt/commit/d593b30594725488cc71c5f30981ed9c9e1d92e0)) | ||
## [0.15.9](https://github.com/izatop/bunt/compare/v0.15.8...v0.15.9) (2021-03-04) | ||
@@ -8,0 +19,0 @@ |
@@ -1,2 +0,2 @@ | ||
export declare const noop: () => void; | ||
export declare const noop: (...args: any[]) => void; | ||
export declare function not<A extends any[]>(fn: (...args: A) => boolean): (...args: A) => boolean; | ||
@@ -9,3 +9,3 @@ export declare function curry<A extends any[], T, S>(fn: (arg1: T, ...args: A) => S, value: T): (...args: A) => S; | ||
export declare const fn: { | ||
noop: () => void; | ||
noop: (...args: any[]) => void; | ||
curry: typeof curry; | ||
@@ -12,0 +12,0 @@ safe: typeof safe; |
@@ -5,3 +5,4 @@ "use strict"; | ||
const is_1 = require("./is"); | ||
const noop = () => void 0; | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const noop = (...args) => void 0; | ||
exports.noop = noop; | ||
@@ -8,0 +9,0 @@ function not(fn) { |
{ | ||
"name": "@bunt/util", | ||
"version": "0.15.9", | ||
"version": "0.15.11", | ||
"keywords": [ | ||
@@ -29,3 +29,3 @@ "typescript" | ||
"license": "MIT", | ||
"gitHead": "c6b2afe763ddc15f776331404db30985acdbb72e" | ||
"gitHead": "f4f13069abf474eab31484c286c1c42cf3823b5f" | ||
} |
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
121424
1711