react-throttle icon indicating copy to clipboard operation
react-throttle copied to clipboard

Results 11 react-throttle issues
Sort by recently updated
recently updated
newest added

eg: import React, { useState } from 'react'; import { Debounce } from 'react-throttle'; const Abc = () => { const [count, setCount] = useState(0); const onSearch = () =>...

Use case ``` ``` If I remove `value={this.props.temp.min}`, it works perfectly.

error: bundling failed: Error: Couldn't find preset "es2015" relative to directory "/Users/heisen-berg/ReactNativeProjects/AccioIOS/node_modules/react-throttle". I am getting this while using Debounce. How to solve it?

Bug In IE11 the following error occurs: >Object doesn't support property or method 'includes' Reason: `includes` is not supported in IE. Proposed solution: Can it be replaced by `indexOf` ?...

This patch introduces the `babel-plugin-lodash` plugin in order to rewrite the `lodash` imports from, say: ``` js import _ from 'lodash'; export default function(func) { return _.isFunction(func) && func.name ===...

Due to wrapping Component, the state and props are not being passed down when used on an Element that's not a simple Input. Example [https://gist.github.com/gpltaylor/57756c5f0fdc5ee1fa4e7157c74275b2](url) The mouse event is called,...

Hi Is this plugin loading the entire lodash library? Any way to avoid that and just load the necessary things?