Checks wheter a value is a bound function according to its name and string representation.
isBoundFunction((() => 0).bind()) // trueisBoundFunction(String.bind()) // trueisBoundFunction(function bound() {}) // false (it's not native) Copy
isBoundFunction((() => 0).bind()) // trueisBoundFunction(String.bind()) // trueisBoundFunction(function bound() {}) // false (it's not native)
3.0.0-beta.1
Checks wheter a value is a bound function according to its name and string representation.