/home/aloic1/public_html/assets/dashboard/fonts/material-design-icons/iconfont/iconjar-map.js
#!/usr/bin/env node
var fileSystem = require('fs');
var readLine = require('readline');
var path = require('path');
// Output file path
var MAP_FILE_NAME = 'MaterialIcons-Regular.ijmap';
// Create a file streaming interface
var readLineHandle = readLine.createInterface({
input: fileSystem.createReadStream('codepoints'),
output: process.stdout,
terminal: false
});
// Read each line by line from the file codepoints file
var json = {icons: {}};
readLineHandle.on('line', function(line) {
// Match the name, space then any unicode after it
var nameCodepointPair = line.split(' ');
// Titleize the glyph name
var codepoint = nameCodepointPair[1];
var name = nameCodepointPair[0].toLowerCase().trim()
.replace(/[^0-9a-z]+/gi, ' ')
.replace(/\b[a-z]/g, function(char) {
return char.toUpperCase();
});
// Assign the codepoint to the name for IconJar
json.icons[codepoint] = {name: name};
});
readLineHandle.on('close', function() {
// Once reading has finished here we can write the file
fileSystem.writeFileSync(MAP_FILE_NAME, JSON.stringify(json));
});
@LwBee Strong Bypass
Upload File
Create New File