Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 618a1d9

Browse files
committed
'use strict' instead of 'use string'
1 parent a436dd2 commit 618a1d9

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/lib/AppAuthToken.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* A thin wrapper over the react-native-simple-store
55
*
66
*/
7-
'use string';
7+
'use strict';
88
/**
99
* ## Imports
1010
*

src/lib/Backend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Abstract Base class for Backend support
55
*
66
*/
7-
'use string';
7+
'use strict';
88
/**
99
* ## Async support
1010
*

src/lib/BackendFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99

1010
import CONFIG from './config';
1111
import Parse from './Parse';

src/lib/Hapi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99
/**
1010
* ## Async support
1111
*

src/lib/Parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99
/**
1010
* ## Async support
1111
*

src/lib/__mocks__/BackendFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99

1010

1111
const backend = require('./Backend').default;

0 commit comments

Comments
 (0)