component.json 463 B

123456789101112131415161718
  1. {
  2. "name": "debounce",
  3. "repo": "component/debounce",
  4. "description": "Creates and returns a new debounced version of the passed function that will postpone its execution until after wait milliseconds have elapsed since the last time it was invoked",
  5. "version": "1.2.1",
  6. "main": "index.js",
  7. "scripts": [
  8. "index.js"
  9. ],
  10. "keywords": [
  11. "function",
  12. "throttle",
  13. "invoke"
  14. ],
  15. "dependencies": {},
  16. "development": {},
  17. "license": "MIT"
  18. }