kolesoffac

bind small

Mar 26th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function bind(fn, object, ...args) {
  2.     return () => fn.apply(object, args)
  3. }
Advertisement
Add Comment
Please, Sign In to add comment