Skip to content

Commit 17ad92a

Browse files
committed
JSON2 library was updated to version of October 28, 2016
1 parent 0f6481b commit 17ad92a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

NuGet/MsieJavaScriptEngine.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
<description>This library is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine). Project was based on the code of SassAndCoffee.JavaScript (http://github.com/paulcbetts/SassAndCoffee), Chakra Sample Hosts (http://github.com/panopticoncentral/chakra-host) and jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).</description>
1414
<summary>This library is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine).</summary>
1515
<releaseNotes>1. Now when you call the overloaded version of the `ExecuteResource` method, that takes the type, need to pass the resource name without the namespace;
16-
2. Fixed a error “Out of stack space”.</releaseNotes>
16+
2. Fixed a error “Out of stack space”;
17+
3. JSON2 library was updated to version of October 28, 2016.</releaseNotes>
1718
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1819
<language>en-US</language>
1920
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
=============
2424
1. Now when you call the overloaded version of the `ExecuteResource` method, that
2525
takes the type, need to pass the resource name without the namespace;
26-
2. Fixed a error “Out of stack space”.
26+
2. Fixed a error “Out of stack space”;
27+
3. JSON2 library was updated to version of October 28, 2016.
2728

2829
============
2930
PROJECT SITE

src/MsieJavaScriptEngine/Resources/json2.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// json2.js
2-
// 2016-05-01
2+
// 2016-10-28
33
// Public Domain.
44
// NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
55
// See http://www.JSON.org/js.html
@@ -10,7 +10,7 @@
1010
// NOT CONTROL.
1111

1212
// This file creates a global JSON object containing two methods: stringify
13-
// and parse. This file is provides the ES5 JSON capability to ES3 systems.
13+
// and parse. This file provides the ES5 JSON capability to ES3 systems.
1414
// If a project might run on IE8 or earlier, then this file should be included.
1515
// This file does nothing on ES5 systems.
1616

@@ -162,7 +162,7 @@ if (typeof JSON !== "object") {
162162
var rx_two = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g;
163163
var rx_three = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g;
164164
var rx_four = /(?:^|:|,)(?:\s*\[)+/g;
165-
var rx_escapable = /[\\\"\u0000-\u001f\u007f-\u009f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;
165+
var rx_escapable = /[\\"\u0000-\u001f\u007f-\u009f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;
166166
var rx_dangerous = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;
167167

168168
function f(n) {

0 commit comments

Comments
 (0)