UNPKG

ddd-jquery

Version:

de-bowerified, de-amdified, de-gruntified... jQuery.

12 lines 301 B
function addGetHookIf(conditionFn, hookFn) { return { get: function () { if (conditionFn()) { delete this.get; return; } return (this.get = hookFn).apply(this, arguments); } }; } module.exports = addGetHookIf;