product-name-process.js 126 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 /** * Created by yoho on 2016/12/19. */ module.exports = function (nameStr) { return nameStr.match(/\w/ig).join(''); };