Skip to content

Commit aa349c7

Browse files
committed
snapshot
1 parent baf9d1d commit aa349c7

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

dist/r.js

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license r.js 2.3.2+ Mon, 26 Sep 2016 05:58:05 GMT Copyright jQuery Foundation and other contributors.
2+
* @license r.js 2.3.2+ Sat, 01 Oct 2016 23:40:33 GMT Copyright jQuery Foundation and other contributors.
33
* Released under MIT license, http://github.com/requirejs/r.js/LICENSE
44
*/
55

@@ -19,7 +19,7 @@ var requirejs, require, define, xpcUtil;
1919
(function (console, args, readFileFunc) {
2020
var fileName, env, fs, vm, path, exec, rhinoContext, dir, nodeRequire,
2121
nodeDefine, exists, reqMain, loadedOptimizedLib, existsForNode, Cc, Ci,
22-
version = '2.3.2+ Mon, 26 Sep 2016 05:58:05 GMT',
22+
version = '2.3.2+ Sat, 01 Oct 2016 23:40:33 GMT',
2323
jsSuffixRegExp = /\.js$/,
2424
commandOption = '',
2525
useLibLoaded = {},
@@ -23789,17 +23789,6 @@ function (esprima, parse, logger, lang) {
2378923789
//start.line is 1-based, not 0 based.
2379023790
lineIndex = loc.start.line - 1,
2379123791
line = contentLines[lineIndex];
23792-
23793-
if (!line) {
23794-
//In rare cases, file contains just \r instead of \r\n, so
23795-
//adjust the contentLines and try again.
23796-
//https://github.com/requirejs/r.js/issues/924
23797-
if (contents.indexOf('\r') !== -1) {
23798-
contentLines = contents.split('\r');
23799-
}
23800-
line = contentLines[lineIndex];
23801-
}
23802-
2380323792
contentLines[lineIndex] = line.substring(0, startIndex) +
2380423793
contentInsertion +
2380523794
line.substring(startIndex,

0 commit comments

Comments
 (0)