File tree Expand file tree Collapse file tree 2 files changed +16
-13
lines changed
Expand file tree Collapse file tree 2 files changed +16
-13
lines changed Original file line number Diff line number Diff line change 1- # https://docs.travis-ci.com/user/languages/javascript-with-nodejs/
21language : node_js
32node_js :
4- - " lts/*"
5- addons :
6- firefox : latest
3+ - lts/*
74env :
8- - BROWSER=slChrome
9- - BROWSER=slFirefox
10- - BROWSER=slSafari
11- - BROWSER=slIE
12- - BROWSER=slEdge
13- - BROWSER=slIos
14- - BROWSER=slAndroid
15- - BROWSER=
5+ matrix :
6+ - BROWSER=slChrome
7+ - BROWSER=slFirefox
8+ - BROWSER=slSafari
9+ - BROWSER=slIE
10+ - BROWSER=slEdge
11+ - BROWSER=slIos
12+ - BROWSER=slAndroid
13+ - BROWSER=
14+ global :
15+ # SAUCE_USERNAME
16+ - secure : J+FOPE/vVK6yzVXHVE7xibFV/hV+Ehc78MBADLlE10YIY7Ag6JkVeomgqRFB9I8zFzj5DALkpzOLGx4iIrFs6iYiNnEcl39fkm8myHl8xIuW+KHt5QOsCtM5qmvfSEZhJV+La0lSzFicjY9VX90VLZvJOHIbiCvIFRoxnwYVw6o=
17+ # SAUCE_ACCESS_KEY
18+ - secure : ay3CSAjya+UQDi0RulLIl6q25oobwLsjLbdkeASgjBq0qN5dXgFgEpBjecBxFqPGrwzzCj9K9fR81NWV80EjLkGdcfN0oGx0wvsOo2C2ulWGHc1dRgKUnMKAA2TL3br14KMfmGn6fmr+fA7Vq+qWajQpExlG0Kuw68C9iNuKIQw=
1619cache : npm
1720install : |
1821 if [ "${BROWSER}" = "" ]
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ function getString(ptr) {
3535 var u16 = new Uint16Array(buffer);
3636 var offset = (ptr + 4) >>> 1;
3737 var length = u32[ptr >>> 2];
38- return String.fromCharCode(... u16.subarray(offset, offset + length))
38+ return String.fromCharCode.apply(String, u16.subarray(offset, offset + length))
3939}
4040
4141function abort(message, filename, line, column) {
You can’t perform that action at this time.
0 commit comments