Security News
38% of CISOs Fear Theyβre Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
printable-characters
Advanced tools
A little helper for handling strings containing zero width control characters, ANSI styling, whitespaces, newlines, π©, etc.
A little helper for handling strings containing zero width characters, ANSI styling, whitespaces, newlines, weird Unicode π© symbols, etc.
const { strlen } = require ('printable-characters')
strlen ('foo bar') // === 7
strlen ('\u001b[106mfoo bar\u001b[49m') // === 7
const { isBlank } = require ('printable-characters')
isBlank ('foobar') // === false
isBlank ('\u001b[106m \t \t \n \u001b[49m') // === true
const { blank } = require ('printable-characters')
blank ('π©') // === ' '
blank ('foo') // === ' '
blank ('\tfoo \nfoo') // === '\t \n '
blank ('\u001b[22m\u001b[1mfoo \t\u001b[39m\u001b[22m')) // === ' \t'
const { ansiEscapeCodes, zeroWidthCharacters } = require ('printable-characters')
const s = '\u001b[106m' + 'foo' + '\n' + 'bar' + '\u001b[49m'
s.replace (ansiEscapeCodes, '') // === 'foo\nbar'
.replace (zeroWidthCharacters, '') // === 'foobar'
Use for safely truncating strings to maximum width without breaking ANSI codes:
const { first } = require ('printable-characters')
const s = '\u001b[22mfoobar\u001b[22m'
first (s, 0) // === '\u001b[22m\u001b[22m'
first (s, 1) // === '\u001b[22mf\u001b[22m'
first (s, 3) // === '\u001b[22mfoo\u001b[22m'
first (s, 6) // === '\u001b[22mfoobar\u001b[22m'
const { partition } = require ('printable-characters')
partition ('') // [ ])
partition ('foo') // [['', 'foo'] ])
partition ('\u001b[1mfoo') // [['\u001b[1m', 'foo'] ])
partition ('\u001b[1mfoo\u0000bar') // [['\u001b[1m', 'foo'], ['\u0000', 'bar'] ])
partition ('\u001b[1mfoo\u0000bar\n') // [['\u001b[1m', 'foo'], ['\u0000', 'bar'], ['\n', '']])
console.log
for the log-driven debugging junkies!Handle multi-component emojis, as in this article:
assert.equal (strlen ('π©ββ€οΈβπβπ©'), 1) // FAILING, see http://blog.jonnew.com/posts/poo-dot-length-equals-two for possible solution
assert.equal (blank ('π©ββ€οΈβπβπ©'), ' ') // FAILING, see http://blog.jonnew.com/posts/poo-dot-length-equals-two for possible solution
FAQs
A little helper for handling strings containing zero width control characters, ANSI styling, whitespaces, newlines, π©, etc.
The npm package printable-characters receives a total of 804,399 weekly downloads. As such, printable-characters popularity was classified as popular.
We found that printable-characters demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Β It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.