summaryrefslogtreecommitdiff
path: root/test/parallel/test-punycode.js
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2016-12-10 11:08:56 +0100
committerJames M Snell <jasnell@gmail.com>2016-12-22 20:27:59 -0800
commit966e5cfb8169a35bf3a99d0272256b0976681a70 (patch)
treed0f1fc3ca04c19df760ec4b8a5fc0c5510b85221 /test/parallel/test-punycode.js
parent9fd79c9f5ba57f73783478e26555591b0c30f8c8 (diff)
downloadandroid-node-v8-966e5cfb8169a35bf3a99d0272256b0976681a70.tar.gz
android-node-v8-966e5cfb8169a35bf3a99d0272256b0976681a70.tar.bz2
android-node-v8-966e5cfb8169a35bf3a99d0272256b0976681a70.zip
tools: enforce linebreak after ternary operators
This is to be consistent with the other operators and helps understanding the context when the code is grepped. PR-URL: https://github.com/nodejs/node/pull/10213 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-punycode.js')
-rw-r--r--test/parallel/test-punycode.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/parallel/test-punycode.js b/test/parallel/test-punycode.js
index e869e6a33b..7d969c66ee 100644
--- a/test/parallel/test-punycode.js
+++ b/test/parallel/test-punycode.js
@@ -182,19 +182,19 @@ const testBattery = {
),
toASCII: (test) => assert.strictEqual(
punycode.toASCII(test.decoded),
- regexNonASCII.test(test.decoded)
- ? `xn--${test.encoded}`
- : test.decoded
+ regexNonASCII.test(test.decoded) ?
+ `xn--${test.encoded}` :
+ test.decoded
),
toUnicode: (test) => assert.strictEqual(
punycode.toUnicode(
- regexNonASCII.test(test.decoded)
- ? `xn--${test.encoded}`
- : test.decoded
+ regexNonASCII.test(test.decoded) ?
+ `xn--${test.encoded}` :
+ test.decoded
),
- regexNonASCII.test(test.decoded)
- ? test.decoded.toLowerCase()
- : test.decoded
+ regexNonASCII.test(test.decoded) ?
+ test.decoded.toLowerCase() :
+ test.decoded
)
};