isomorfeus-speednode 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/isomorfeus/speednode/runner.js +0 -2
- data/lib/isomorfeus/speednode/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 676da9269c67e955ccfe546dbbbc82bf079e796d1070dd8d699c6523dbc537ba
|
|
4
|
+
data.tar.gz: b78918192805e28a455e9c5d45594fdc3b683d93ddc6f0a38f13207afecb808a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b933335621ed51658ade944312fea14e1a8b89ec71585e4b99a46fe3a2dc6c94ccc073f6013281ed19ad07d889e91a09bfad75784c9f5004c8a35e3124b4dd2f
|
|
7
|
+
data.tar.gz: 17c4dd51349c07013c961d714daee25f06c524edae7bb876cc0c78f7eda9519ea8be8c966840b86a08f019ef6b44540b31af09d52e5e8fd36c2576a84b702c44
|
|
@@ -283,8 +283,6 @@ let commands = {
|
|
|
283
283
|
return formatResult(result);
|
|
284
284
|
},
|
|
285
285
|
scsc: function (input) {
|
|
286
|
-
if (input.source.match(/^\s*{/)) { input.source = "(" + input.source + ")"; }
|
|
287
|
-
else if (input.source.match(/^\s*function\s*\(/)) { input.source = "(" + input.source + ")"; }
|
|
288
286
|
if (!scripts[input.context]) { scripts[input.context] = {}; }
|
|
289
287
|
scripts[input.context][input.key] = new vm.Script(input.source);
|
|
290
288
|
return formatResult(true);
|