normalizeFile 
Requires a Node.js runtime ('qsu/node')Returns the file name within the path.
Parameters
filePath::string: File or directory pathnormalizationForm::'NFC'|'NFD'|'NFKC'|'NFKD'|undefined: Normalization method (If value is
Namedundefined,NFCis used.)
Returns
string
Examples
javascript
normalizeFile('안녕하세요Hello.txt', 'NFC'); // '안녕하세요Hello.txt'
normalizeFile('안녕하세요Hello.txt', 'NFD'); // '안녕하세요Hello.txt'dart
normalizeFile('안녕하세요Hello.txt', normalizationForm: 'NFC'); // '안녕하세요Hello.txt'
normalizeFile('안녕하세요Hello.txt', normalizationForm: 'NFD'); // '안녕하세요Hello.txt'