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;

12 lines (10 loc) 203 B
'use strict'; /** * Check if a character is whitespace. * * @param {string} char * @returns {boolean} */ module.exports = function (char) { return [' ', '\n', '\t', '\r', '\f'].includes(char); };