'use strict'
module.exports = exports = STR =>
STR.replace( /\s+/g, '' )
.replace( /[^\w\d\.,_-]/g, '-' )
.toUpperCase()