UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

13 lines (11 loc) 231 B
'use strict'; /** * Check if a string is a single line (i.e. does not contain * any newline characters). * * @param {string} input * @return {boolean} */ module.exports = function (input) { return !/[\n\r]/.test(input); };