mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
11 lines
375 B
TypeScript
11 lines
375 B
TypeScript
import { Base64 } from 'js-base64'
|
|
|
|
Base64.encode('dankogai'); // ZGFua29nYWk=
|
|
Base64.encode('小飼弾'); // 5bCP6aO85by+
|
|
Base64.encodeURI('小飼弾'); // 5bCP6aO85by-
|
|
|
|
Base64.decode('ZGFua29nYWk='); // dankogai
|
|
Base64.decode('5bCP6aO85by+'); // 小飼弾
|
|
// note .decodeURI() is unnecessary since it accepts both flavors
|
|
Base64.decode('5bCP6aO85by-'); // 小飼弾
|