Skip to content

Commit e4545b4

Browse files
committed
lint fix
1 parent f2c9c02 commit e4545b4

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

node-full-icu.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#!/usr/bin/env node
22
const { spawn } = require('child_process')
33
const data = require('./full-icu')
4-
const env = data.icu_small ? {
5-
...process.env,
6-
NODE_ICU_DATA: data.datPath()
7-
} : process.env
4+
const env = data.icu_small
5+
? {
6+
...process.env,
7+
NODE_ICU_DATA: data.datPath()
8+
}
9+
: process.env
810

911
spawn('/usr/bin/env', ['node', ...process.argv.slice(2)], { env, stdio: 'inherit' })

0 commit comments

Comments
 (0)