-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Open
Description
I saw this and though, nobody is using phantomjs. it's a headless browser that no real user is using. it was based on webkit and the development have been discontinued. think you should remove this kind of things and instead use something like puppeteer or something.
less.js/packages/less/src/less-browser/index.js
Lines 49 to 56 in eefe33a
// only really needed for phantom | |
function bind(func, thisArg) { | |
const curryArgs = Array.prototype.slice.call(arguments, 2); | |
return function() { | |
const args = curryArgs.concat(Array.prototype.slice.call(arguments, 0)); | |
return func.apply(thisArg, args); | |
}; | |
} |
PhantomJS is depricated and should not be used anymore.