File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ module.exports = {
11
11
eval$if : eval$if ,
12
12
eval$delay : eval$delay ,
13
13
eval$func : eval$func ,
14
- eval$call : eval$call
14
+ eval$call : eval$call ,
15
+ eval$quote : eval$quote
15
16
} ;
16
17
17
18
@@ -207,6 +208,11 @@ function eval$call(params) {
207
208
}
208
209
209
210
211
+ function eval$quote ( params ) {
212
+ return Promise . resolve ( params . $quote ) ;
213
+ }
214
+
215
+
210
216
function isScript ( value ) {
211
217
return value && typeof value == 'object' ;
212
218
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jsonscript-js" ,
3
- "version" : " 0.2.3 " ,
3
+ "version" : " 0.3.0 " ,
4
4
"description" : " JavaScript interpreter for JSONScript" ,
5
5
"main" : " lib/jsonscript.js" ,
6
6
"scripts" : {
30
30
"ajv" : " ^3.7.1" ,
31
31
"dot" : " ^1.0.3" ,
32
32
"json-pointer" : " ^0.3.1" ,
33
- "jsonscript" : " ^0.2.2 "
33
+ "jsonscript" : " ^0.3.0 "
34
34
},
35
35
"devDependencies" : {
36
36
"coveralls" : " ^2.11.6" ,
37
37
"eslint" : " ^2.2.0" ,
38
38
"istanbul" : " ^0.4.2" ,
39
39
"jsonscript-test" : " ^0.2.1" ,
40
- "jsonscript-test-suite" : " ^0.2.3 " ,
40
+ "jsonscript-test-suite" : " ^0.3.0 " ,
41
41
"mocha" : " ^2.4.5" ,
42
42
"pre-commit" : " ^1.1.2"
43
43
}
You can’t perform that action at this time.
0 commit comments