disable _throttle lodash from method code example
Example 1: lodash debounce
_.debounce(func, [wait=0], [options={}])
Example 2: get lodash
var object = { 'a': [{ 'b': { 'c': 3 } }] }; _.get(object, 'a[0].b.c');// => 3 _.get(object, ['a', '0', 'b', 'c']);// => 3 _.get(object, 'a.b.c', 'default');// => 'default'