I found next form of new operator in the less documentation.
var parser = new (less.Parser) ({
pathes [
'.',
'./css'
],
filename: 'style.less'
});
What the differences from the usual form?
var parser = new less.Parser({
patches [
'.',
'./css'
],
filename: 'style.less'
});
Can it be combined with .apply method?