You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ReadMe.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,8 @@ ClearScript is a library that makes it easy to add scripting to your .NET applic
16
16
* Full support for generic types and methods, including C#-like type inference and explicit type arguments
17
17
* Exposed .NET collections support native script iteration mechanisms:
18
18
*[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)
* Scripts can invoke methods with output parameters, optional parameters, and parameter arrays
22
22
* Script delegates enable callbacks into script code
23
23
* 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
26
26
* Full support for script debugging
27
27
* Support for fast data transfer to and from [JavaScript typed arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays)
28
28
* 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
+
* Support for [CommonJS modules](http://wiki.commonjs.org/wiki/Modules)
30
30
* 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).
31
31
* 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).
32
32
* 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