mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 06:53:52 +00:00

Non-ASCII characters in /lib get compiled into the node binary, and may bloat the binary size unnecessarily. A linter rule may help prevent this. PR-URL: https://github.com/nodejs/node/pull/18043 Fixes: https://github.com/nodejs/node/issues/11209 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
'use strict';
|
|
|
|
// This module exists entirely for regression testing purposes.
|
|
// See `test/parallel/test-internal-unicode.js`.
|
|
|
|
/* eslint-disable non-ascii-character */
|
|
module.exports = '✓';
|
|
/* eslint-enable non-ascii-character */
|