File tree Expand file tree Collapse file tree 5 files changed +19
-19
lines changed Expand file tree Collapse file tree 5 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 26
26
"url" : " git://github.com/exceptionless/Exceptionless.JavaScript.git"
27
27
},
28
28
"devDependencies" : {
29
- "bower" : " 1.6.5" ,
30
29
"chai" : " ^3.4.1" ,
31
- "del" : " 2.1 .0" ,
32
- "es5-shim" : " 4.3 .1" ,
33
- "es6-shim" : " 0.33.13 " ,
30
+ "del" : " 2.2 .0" ,
31
+ "es5-shim" : " 4.4 .1" ,
32
+ "es6-shim" : " 0.34.1 " ,
34
33
"gulp" : " 3.9.0" ,
35
34
"gulp-concat" : " 2.6.0" ,
36
35
"gulp-exec" : " ^2.1.2" ,
37
36
"gulp-mocha" : " ^2.2.0" ,
38
37
"gulp-replace" : " 0.5.4" ,
39
38
"gulp-sourcemaps" : " 1.6.0" ,
40
- "gulp-tslint" : " 3.6 .0" ,
39
+ "gulp-tslint" : " 4.3 .0" ,
41
40
"gulp-uglify" : " 1.5.1" ,
42
41
"gulp-wrap-umd" : " 0.2.1" ,
43
- "rimraf" : " 2.4.3 " ,
44
- "source-map-support" : " ^0.3.3 " ,
42
+ "rimraf" : " 2.5.0 " ,
43
+ "source-map-support" : " ^0.4.0 " ,
45
44
"tracekit" : " 0.3.1" ,
46
- "tsproject" : " 1.0.5" ,
47
- "typescript" : " 1.6.2" ,
45
+ "tslint" : " ^3.2.1" ,
46
+ "tsproject" : " 1.2.0-rc.4" ,
47
+ "typescript" : " 1.7.5" ,
48
48
"typescript-formatter" : " ^1.1.0"
49
49
},
50
50
"dependencies" : {
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ export class EventBuilder {
153
153
return false ;
154
154
}
155
155
156
- for ( var index = 0 ; index < value . length ; index ++ ) {
156
+ for ( let index = 0 ; index < value . length ; index ++ ) {
157
157
let code = value . charCodeAt ( index ) ;
158
158
let isDigit = ( code >= 48 ) && ( code <= 57 ) ;
159
159
let isLetter = ( ( code >= 65 ) && ( code <= 90 ) ) || ( ( code >= 97 ) && ( code <= 122 ) ) ;
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ describe('Utils', () => {
21
21
name : 'Blake' ,
22
22
password : '123456' ,
23
23
passwordResetToken : 'a reset token' ,
24
- myPasswordValue : '123456' ,
25
24
myPassword : '123456' ,
25
+ myPasswordValue : '123456' ,
26
26
customValue : 'Password' ,
27
27
value : {
28
28
Password : '123456'
Original file line number Diff line number Diff line change 6
6
"bundle" : " src/typings/tsd.d.ts" ,
7
7
"installed" : {
8
8
"node/node.d.ts" : {
9
- "commit" : " 68548c2daab053869f323d475419c693478bbb73 "
9
+ "commit" : " d1f6bde13f2209be42e86c3686761e8bfcbb50a5 "
10
10
},
11
11
"angularjs/angular.d.ts" : {
12
- "commit" : " 68548c2daab053869f323d475419c693478bbb73 "
12
+ "commit" : " d1f6bde13f2209be42e86c3686761e8bfcbb50a5 "
13
13
},
14
14
"jquery/jquery.d.ts" : {
15
- "commit" : " 68548c2daab053869f323d475419c693478bbb73 "
15
+ "commit" : " d1f6bde13f2209be42e86c3686761e8bfcbb50a5 "
16
16
},
17
17
"stack-trace/stack-trace.d.ts" : {
18
- "commit" : " 68548c2daab053869f323d475419c693478bbb73 "
18
+ "commit" : " d1f6bde13f2209be42e86c3686761e8bfcbb50a5 "
19
19
},
20
20
"mocha/mocha.d.ts" : {
21
- "commit" : " fa04c80f4a889613b96cb4f283848c61a9f64233 "
21
+ "commit" : " d1f6bde13f2209be42e86c3686761e8bfcbb50a5 "
22
22
},
23
23
"assertion-error/assertion-error.d.ts" : {
24
- "commit" : " fa04c80f4a889613b96cb4f283848c61a9f64233 "
24
+ "commit" : " d1f6bde13f2209be42e86c3686761e8bfcbb50a5 "
25
25
},
26
26
"chai/chai.d.ts" : {
27
- "commit" : " fa04c80f4a889613b96cb4f283848c61a9f64233 "
27
+ "commit" : " d1f6bde13f2209be42e86c3686761e8bfcbb50a5 "
28
28
}
29
29
}
30
30
}
Original file line number Diff line number Diff line change 41
41
"no-unreachable" : true ,
42
42
"no-use-before-declare" : true ,
43
43
"no-var-keyword" : true ,
44
- "object-literal-sort-keys" : true ,
44
+ "object-literal-sort-keys" : false ,
45
45
"one-line" : [true ,
46
46
" check-open-brace" ,
47
47
" check-catch" ,
You can’t perform that action at this time.
0 commit comments