myrenamer
TypeScript icon, indicating that this package has built-in type declarations

0.2.2 • Public • Published

myRenamer

Zawgyi <=> Unicode Renamer

Build Status code style: prettier npm contributions welcome License: MIT

Installation

npm install myrenamer

API

toZawgyi

const myRenamer = require('myrenamer');
const folder = new myRenamer('~/folder');
const file = new myRenamer('~/file');
folder.toZawgyi();
file.toZawgyi();

toUnicode

const myRenamer = require('myrenamer');
const folder = new myRenamer('~/folder');
const file = new myRenamer('~/file');
folder.toUnicode();
file.toUnicode();

toggle

Zawgyi file/folder will be renamed to Unicode. Unicode file/folder will be renamed to Zawgyi.

const myRenamer = require('myrenamer');
const folder = new myRenamer('~/folder');
const file = new myRenamer('~/file');
folder.toggle();
file.toggle();

LICENSE

MIT © Aung Myo Kyaw

/myrenamer/

    Package Sidebar

    Install

    npm i myrenamer

    Weekly Downloads

    3

    Version

    0.2.2

    License

    MIT

    Unpacked Size

    19.3 kB

    Total Files

    14

    Last publish

    Collaborators

    • aungmyokyaw