control-pictures
v2.0.1
Published
Replace pictures for control character codes with actual control characters
Downloads
135
Maintainers
Readme
control-pictures
Replace pictures for control character codes with actual control characters.
Contents
What is this?
This package replaces pictures for control character codes (such as
'␊'
) with actual control characters (as in, '\n'
).
It supports U+2400 SYMBOL FOR NULL (␀) through U+2426 SYMBOL FOR SUBSTITUTE
FORM TWO (␦
).
When should I use this?
Use this package if you:
- have fixtures that would be unreadable or confusing (to tools) if they used control characters
- want to display control characters to users, e.g., trailing spaces
Install
This package is ESM only. In Node.js (version 12.20+, 14.14+, or 16.0+), install with npm:
npm install controlPictures
In Deno with Skypack:
import {controlPictures} from 'https://cdn.skypack.dev/control-pictures@7?dts'
In browsers with Skypack:
<script type="module">
import {controlPictures} from 'https://cdn.skypack.dev/control-pictures@7?min'
</script>
Use
import {controlPictures} from 'control-pictures'
controlPictures() //=> ''
controlPictures('␉␊␋␌␍') //=> '\t\n\v\f\r'
controlPictures('␀') //=> '\0'
controlPictures('a␡b') //=> 'a\x7fb'
controlPictures('') //=> '\n'
API
This package exports the following identifier: controlPictures
.
There is no default export.
controlPictures(value?)
Replace pictures for control character codes with actual control characters.
Takes a value with pictures (string
), returns a value with actual control
codes (string
).
Types
This package is fully typed with TypeScript. There are no extra exported types.
Compatibility
This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, and 16.0+. It also works in Deno and modern browsers.
Security
This package is safe.
Contribute
Yes please! See How to Contribute to Open Source.