mirror of
https://github.com/nodejs/node.git
synced 2025-08-20 01:15:51 +02:00

Greatly simplify how ESLint and its plugins are installed. PR-URL: https://github.com/nodejs/node/pull/53413 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
9 lines
160 B
JavaScript
9 lines
160 B
JavaScript
'use strict'
|
|
|
|
var codes = require('./codes.js')
|
|
|
|
function markdownLineEnding(code) {
|
|
return code < codes.horizontalTab
|
|
}
|
|
|
|
module.exports = markdownLineEnding
|