mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Use strict mode for Javelin core
Summary: Enable strict mode for Javelin when running in NodeJS. Test Plan: Made sure Aphlict still worked. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11432
This commit is contained in:
parent
27422ffe8e
commit
98a8d44f11
2 changed files with 3 additions and 1 deletions
|
@ -167,7 +167,7 @@ return array(
|
|||
'rsrc/externals/javelin/core/__tests__/stratcom.js' => '88bf7313',
|
||||
'rsrc/externals/javelin/core/__tests__/util.js' => 'e251703d',
|
||||
'rsrc/externals/javelin/core/init.js' => '8c4e8f8b',
|
||||
'rsrc/externals/javelin/core/init_node.js' => '77350e4d',
|
||||
'rsrc/externals/javelin/core/init_node.js' => 'c234aded',
|
||||
'rsrc/externals/javelin/core/install.js' => '05270951',
|
||||
'rsrc/externals/javelin/core/util.js' => '93cc50d6',
|
||||
'rsrc/externals/javelin/docs/Base.js' => '74676256',
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
'use strict';
|
||||
|
||||
/**
|
||||
* Alternative Javelin init file for Node.js.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue