UNPKG

saasify-utils

Version:
17 lines (13 loc) 224 B
'use strict' const path = require('path') module.exports = (filename) => { if (filename) { const ext = path .extname(filename) .substr(1) .toLowerCase() if (ext) { return ext } } }