Timo Hocker 3bc67290d6 update-scanner: automatic update
@scode/eslint-config: 2.0.15 ==> 2.0.16 minor
2020-05-04 21:00:34 +02:00
2020-04-24 16:57:50 +02:00
fix
2020-04-24 16:13:54 +02:00
2020-03-25 17:03:40 +01:00
2020-03-14 14:06:57 +01:00
2020-03-04 12:15:50 +01:00
2020-04-24 16:59:23 +02:00
2020-04-24 16:57:50 +02:00
2020-03-25 17:03:40 +01:00
2020-03-04 12:15:50 +01:00
2020-05-04 20:36:02 +02:00
2020-03-06 08:42:42 +01:00
2020-03-25 17:03:40 +01:00
2020-05-04 21:00:34 +02:00

Encoding Helper

Converting strings between different encodings

Usage

const encoding = require('@scode/encoding-helper');

const hex = encoding.to_hex('abc'); // convert any encoding to hex, default is utf-8
const b64 = encoding.to_b64(hex, 'hex'); // convert any encoding to base64, default is utf-8
const utf8 = encoding.to_utf8(hex, 'hex'); // convert any encoding to utf-8, no default
Description
No description provided
Readme 322 KiB
Languages
JavaScript 100%