mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Expose Acorn through PaperScript object.
This commit is contained in:
parent
43f319e762
commit
c36712758b
1 changed files with 4 additions and 2 deletions
|
@ -461,7 +461,8 @@ Base.exports.PaperScript = (function() {
|
|||
return {
|
||||
compile: compile,
|
||||
execute: execute,
|
||||
load: load
|
||||
load: load,
|
||||
acorn: scope.acorn
|
||||
};
|
||||
|
||||
/*#*/ } else { // !__options.environment == 'browser'
|
||||
|
@ -493,7 +494,8 @@ Base.exports.PaperScript = (function() {
|
|||
|
||||
return {
|
||||
compile: compile,
|
||||
execute: execute
|
||||
execute: execute,
|
||||
acorn: scope.acorn
|
||||
};
|
||||
|
||||
/*#*/ } // !__options.environment == 'browser'
|
||||
|
|
Loading…
Reference in a new issue