• This project
    • Loading...
  • Sign in

fe / yohobuywap-node · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • utils
  • product-name-process.js
  • process-product-name
    05f81d55
    by 郭成尧
    2016-12-19 09:59:17 +0800  
    Browse Files
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('');
};