UNPKG

comments-remover

Version:

Removing coding leangues comments

11 lines (6 loc) 263 B
const fs = require('fs'); async function removeComment(code) { if (!code) throw new Error("Please give a javascript code to remove the comments!"); return code.replace(/\/\*[\s\S]*?\*\/|\/\/.*/g,'').trim(); } module.exports = removeComment;