Skip to content

Commit cb3ea2c

Browse files
Update ReadMe.md
1 parent 25c403c commit cb3ea2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ReadMe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ ClearScript is a library that makes it easy to add scripting to your .NET applic
1616
* Full support for generic types and methods, including C#-like type inference and explicit type arguments
1717
* Exposed .NET collections support native script iteration mechanisms:
1818
* ![V8](https://img.shields.io/badge/-V8-orange) [JavaScript iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) and [`for...of`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of)
19-
* ![V8](https://img.shields.io/badge/-JScript-blue) [`Enumerator`](https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/x32bxwys(v=vs.100))
20-
* ![V8](https://img.shields.io/badge/-VBScript-violet) [`For Each...Next`](https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/scripting-articles/tywtbxd0(v=vs.84))
19+
* ![JScript](https://img.shields.io/badge/-JScript-blue) [`Enumerator`](https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/x32bxwys(v=vs.100))
20+
* ![VBScript](https://img.shields.io/badge/-VBScript-violet) [`For Each...Next`](https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/scripting-articles/tywtbxd0(v=vs.84))
2121
* Scripts can invoke methods with output parameters, optional parameters, and parameter arrays
2222
* Script delegates enable callbacks into script code
2323
* Support for exposing all the types defined in one or more assemblies in one step
@@ -26,7 +26,7 @@ ClearScript is a library that makes it easy to add scripting to your .NET applic
2626
* Full support for script debugging
2727
* ![V8](https://img.shields.io/badge/-V8-orange) Support for fast data transfer to and from [JavaScript typed arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays)
2828
* ![V8](https://img.shields.io/badge/-V8-orange) Support for [JavaScript modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules)
29-
* (JavaScript) Support for [CommonJS modules](http://wiki.commonjs.org/wiki/Modules)
29+
* ![V8](https://img.shields.io/badge/-V8-orange) ![JScript](https://img.shields.io/badge/-JScript-blue) Support for [CommonJS modules](http://wiki.commonjs.org/wiki/Modules)
3030
* ![New](https://img.shields.io/badge/-New!-green) ![V8](https://img.shields.io/badge/-V8-orange) Automatic conversion between .NET [`BigInteger`](https://docs.microsoft.com/en-us/dotnet/api/system.numerics.biginteger) and JavaScript [`BigInt`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt).
3131
* ![New](https://img.shields.io/badge/-New!-green) ![V8](https://img.shields.io/badge/-V8-orange) Optional automatic conversion between .NET [`DateTime`](https://docs.microsoft.com/en-us/dotnet/api/system.datetime) and JavaScript [`Date`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date).
3232
* ![New](https://img.shields.io/badge/-New!-green) ![V8](https://img.shields.io/badge/-V8-orange) Optional automatic conversion between .NET [tasks](https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task) and JavaScript [promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise).

0 commit comments

Comments
 (0)