UNPKG
node-less
Version:
latest (1.0.0)
1.0.0
Less Compiler For Node
node-less
/
lib
/
functionCall.js
11 lines
(8 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
(
function
(
module
) {
var
functionCall =
function
(
env, currentFileInfo
) {
this
.
env
= env;
this
.
currentFileInfo
= currentFileInfo; }; functionCall.
prototype
=
require
(
'./functions.js'
);
module
.
exports
= functionCall; })(
module
);