@three11/debounce
Advanced tools
Comparing version 0.2.0 to 0.3.0
@@ -0,7 +1,93 @@ | ||
(function webpackUniversalModuleDefinition(root, factory) { | ||
if(typeof exports === 'object' && typeof module === 'object') | ||
module.exports = factory(); | ||
else if(typeof define === 'function' && define.amd) | ||
define([], factory); | ||
else if(typeof exports === 'object') | ||
exports["debounce"] = factory(); | ||
else | ||
root["debounce"] = factory(); | ||
})(window, function() { | ||
return /******/ (function(modules) { // webpackBootstrap | ||
/******/ // The module cache | ||
/******/ var installedModules = {}; | ||
/******/ | ||
/******/ // The require function | ||
/******/ function __webpack_require__(moduleId) { | ||
/******/ | ||
/******/ // Check if module is in cache | ||
/******/ if(installedModules[moduleId]) { | ||
/******/ return installedModules[moduleId].exports; | ||
/******/ } | ||
/******/ // Create a new module (and put it into the cache) | ||
/******/ var module = installedModules[moduleId] = { | ||
/******/ i: moduleId, | ||
/******/ l: false, | ||
/******/ exports: {} | ||
/******/ }; | ||
/******/ | ||
/******/ // Execute the module function | ||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); | ||
/******/ | ||
/******/ // Flag the module as loaded | ||
/******/ module.l = true; | ||
/******/ | ||
/******/ // Return the exports of the module | ||
/******/ return module.exports; | ||
/******/ } | ||
/******/ | ||
/******/ | ||
/******/ // expose the modules object (__webpack_modules__) | ||
/******/ __webpack_require__.m = modules; | ||
/******/ | ||
/******/ // expose the module cache | ||
/******/ __webpack_require__.c = installedModules; | ||
/******/ | ||
/******/ // define getter function for harmony exports | ||
/******/ __webpack_require__.d = function(exports, name, getter) { | ||
/******/ if(!__webpack_require__.o(exports, name)) { | ||
/******/ Object.defineProperty(exports, name, { | ||
/******/ configurable: false, | ||
/******/ enumerable: true, | ||
/******/ get: getter | ||
/******/ }); | ||
/******/ } | ||
/******/ }; | ||
/******/ | ||
/******/ // define __esModule on exports | ||
/******/ __webpack_require__.r = function(exports) { | ||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); | ||
/******/ }; | ||
/******/ | ||
/******/ // getDefaultExport function for compatibility with non-harmony modules | ||
/******/ __webpack_require__.n = function(module) { | ||
/******/ var getter = module && module.__esModule ? | ||
/******/ function getDefault() { return module['default']; } : | ||
/******/ function getModuleExports() { return module; }; | ||
/******/ __webpack_require__.d(getter, 'a', getter); | ||
/******/ return getter; | ||
/******/ }; | ||
/******/ | ||
/******/ // Object.prototype.hasOwnProperty.call | ||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; | ||
/******/ | ||
/******/ // __webpack_public_path__ | ||
/******/ __webpack_require__.p = ""; | ||
/******/ | ||
/******/ | ||
/******/ // Load entry module and return exports | ||
/******/ return __webpack_require__(__webpack_require__.s = 0); | ||
/******/ }) | ||
/************************************************************************/ | ||
/******/ ([ | ||
/* 0 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.debounce = void 0; | ||
exports.default = void 0; | ||
@@ -36,2 +122,7 @@ var _this = void 0, | ||
exports.debounce = debounce; | ||
var _default = debounce; | ||
exports.default = _default; | ||
/***/ }) | ||
/******/ ])["default"]; | ||
}); |
{ | ||
"name": "@three11/debounce", | ||
"version": "0.2.0", | ||
"version": "0.3.0", | ||
"description": "Debounce multiple function executions", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "babel src -d dist" | ||
"build": "webpack" | ||
}, | ||
@@ -13,9 +13,3 @@ "repository": { | ||
}, | ||
"keywords": [ | ||
"Debounce", | ||
"Function", | ||
"Wait", | ||
"JavaScript", | ||
"ES2017" | ||
], | ||
"keywords": ["Debounce", "Function", "Wait", "JavaScript", "ES2017"], | ||
"authors": [ | ||
@@ -44,7 +38,11 @@ { | ||
"devDependencies": { | ||
"@babel/cli": "^7.0.0-beta.42", | ||
"@babel/core": "^7.0.0-beta.42", | ||
"@babel/preset-env": "^7.0.0-beta.42", | ||
"@babel/preset-stage-2": "^7.0.0-beta.42" | ||
"@babel/cli": "^7.0.0-beta.44", | ||
"@babel/core": "^7.0.0-beta.44", | ||
"@babel/preset-env": "^7.0.0-beta.44", | ||
"@babel/preset-stage-2": "^7.0.0-beta.44", | ||
"babel-loader": "^8.0.0-beta", | ||
"unminified-webpack-plugin": "^2.0.0", | ||
"webpack": "^4.5.0", | ||
"webpack-cli": "^2.0.14" | ||
} | ||
} |
@@ -22,3 +22,3 @@ # Debounce | ||
``` | ||
import { debounce } from '@three11/debounce'; | ||
import debounce from '@three11/debounce'; | ||
``` | ||
@@ -36,5 +36,5 @@ | ||
* `fn` : <Function> - the function to debounce | ||
* `wait` : <Number> - miliseconds to wait before running the `fn` again | ||
* `immediate` : <Boolean> - whether the function should run immediately | ||
* `fn` : <Function> - the function to debounce | ||
* `wait` : <Number> - miliseconds to wait before running the `fn` again | ||
* `immediate` : <Boolean> - whether the function should run immediately | ||
@@ -41,0 +41,0 @@ ## License |
@@ -1,2 +0,2 @@ | ||
export const debounce = (func, wait, immediate) => { | ||
const debounce = (func, wait, immediate) => { | ||
let timeout; | ||
@@ -27,1 +27,3 @@ | ||
}; | ||
export default debounce; |
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
240302
9
156
8