Skip to content

Instantly share code, notes, and snippets.

View ramikhafagi96's full-sized avatar

Rami Khafagi ramikhafagi96

View GitHub Profile
@nucklehead
nucklehead / cleanIcon.js
Last active May 20, 2024 19:04
Script to clean unused icons in ionic
#!/bin/env node
let path = require('path'), fs=require('fs');
function fromDir(startPath, filter, callback){
if (!fs.existsSync(startPath)){
console.log("no dir ",startPath);
return;
}