1.0.2 • Published 9 years ago

shellex v1.0.2

Weekly downloads
5
License
ISC
Repository
github
Last release
9 years ago

astox

lightweight scripting engine

accepted differences between astox and javascript:

//to assign value of instanceof: var answ = (a instanceof string); print(answ); // will output "true". In javascript will return "false";

//instanceof arguments are not case-sensitive: var answ = (a instanceof String); print(answ); // will output "true". In javascript will return "false";

var answ = (a instanceof StRinG); print(answ); // will still output "true".

<table>
<tr> 
<td>astox</td>
<td>ecma</td>
</tr>

<tr> 
<td>
regex supported only as method argument:
</td>
<td>
inline regex object declaration:
</td>
</tr>
</table>


```javascript
var a = RegEx(/search/);
print(a); 
// will output "search" instead of "/search/"
a = /search/; // will produce errors

Date object: for values after 1970 unix timestamp will be returned (same as js) for values from 0 to 1970 js values will be returned for values before 0 some differences were found in unit-testing

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.0.15

9 years ago

0.0.14

9 years ago

0.0.13

9 years ago

0.0.12

9 years ago

0.0.11

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

0.0.0

9 years ago