📝 Fix code style issue

* Match equality operators for consistent that `==`, `!=` by `===`,
`!==`.
* Match string expression notation `"` by `'`.

[ci skip]
This commit is contained in:
Plusb Preco 2016-05-10 18:42:11 +09:00
parent 3cc2dd216f
commit 5787bb0226
11 changed files with 33 additions and 33 deletions

View file

@ -98,7 +98,7 @@ const template = [
{
label: 'Toggle Developer Tools',
accelerator: (() => {
if (process.platform == 'darwin')
if (process.platform === 'darwin')
return 'Alt+Command+I';
else
return 'Ctrl+Shift+I';