Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #3772 Remove PhantomJS stuff #3809

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 0 additions & 9 deletions packages/less/src/less-browser/index.js
Expand Up @@ -46,15 +46,6 @@
return cloned;
}

// 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);
};
}

function loadStyles(modifyVars) {
const styles = document.getElementsByTagName('style');
let style;
Expand All @@ -70,7 +61,7 @@
/* jshint loopfunc:true */
// use closure to store current style
less.render(lessText, instanceOptions,
bind((style, e, result) => {

Check failure on line 64 in packages/less/src/less-browser/index.js

View workflow job for this annotation

GitHub Actions / Tests on ubuntu-latest with node18

'bind' is not defined

Check failure on line 64 in packages/less/src/less-browser/index.js

View workflow job for this annotation

GitHub Actions / Tests on ubuntu-latest with node10

'bind' is not defined

Check failure on line 64 in packages/less/src/less-browser/index.js

View workflow job for this annotation

GitHub Actions / Tests on ubuntu-latest with node12

'bind' is not defined

Check failure on line 64 in packages/less/src/less-browser/index.js

View workflow job for this annotation

GitHub Actions / Tests on ubuntu-latest with node14

'bind' is not defined
if (e) {
errors.add(e, 'inline');
} else {
Expand Down