Skip to content

Commit fb381f2

Browse files
committed
perf: enable strict mode
1 parent 9de44c6 commit fb381f2

6 files changed

Lines changed: 11 additions & 3 deletions

File tree

HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ unreleased
55
- perf: enable strict mode
66
* deps: uid-safe@~2.1.0
77
- Use `random-bytes` for byte source
8+
* perf: enable strict mode
89

910
1.13.0 / 2016-01-10
1011
===================

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* MIT Licensed
77
*/
88

9+
'use strict';
10+
911
/**
1012
* Module dependencies.
1113
* @private

session/cookie.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
21
/*!
32
* Connect - session - Cookie
43
* Copyright(c) 2010 Sencha Inc.
54
* Copyright(c) 2011 TJ Holowaychuk
65
* MIT Licensed
76
*/
87

8+
'use strict';
9+
910
/**
1011
* Module dependencies.
1112
*/

session/memory.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* MIT Licensed
77
*/
88

9+
'use strict';
10+
911
/**
1012
* Module dependencies.
1113
* @private

session/session.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
21
/*!
32
* Connect - session - Session
43
* Copyright(c) 2010 Sencha Inc.
54
* Copyright(c) 2011 TJ Holowaychuk
65
* MIT Licensed
76
*/
87

8+
'use strict';
9+
910
/**
1011
* Expose Session.
1112
*/

session/store.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
21
/*!
32
* Connect - session - Store
43
* Copyright(c) 2010 Sencha Inc.
54
* Copyright(c) 2011 TJ Holowaychuk
65
* MIT Licensed
76
*/
87

8+
'use strict';
9+
910
/**
1011
* Module dependencies.
1112
*/

0 commit comments

Comments
 (0)