UNPKG

191 BJavaScriptView Raw
1"use strict";
2
3/**
4 * Internal: decorates a function by inverting its result.
5 */
6
7module.exports = function negate(fn) {
8 return function () {
9 return !fn.apply(this, arguments);
10 };
11};
\No newline at end of file