diff --git a/ghost/admin/app/utils/bind.js b/ghost/admin/app/utils/bind.js deleted file mode 100644 index e3fd060354..0000000000 --- a/ghost/admin/app/utils/bind.js +++ /dev/null @@ -1,13 +0,0 @@ -const {slice} = Array.prototype; - -export default function (/* func, args, thisArg */) { - let args = slice.call(arguments); - let func = args.shift(); - let thisArg = args.pop(); - - function bound() { - return func.apply(thisArg, args); - } - - return bound; -}