Logo white

SGH / COMPONENTS

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • COMPONENTS
  • bower_components
  • polymer-element-catalog
  • build
  • catalog
  • utils
  • parse-version.js
  • paper card update
    1f76071f
    Luigi Serra authored
    2015-12-11 15:29:36 +0100  
    Browse Code ยป
parse-version.js 113 Bytes
Edit Raw Blame History Permalink
1 2 3 4
module.exports = function (version) {
  
  return (version.indexOf('#') > 0) ? version.split('#')[1] : version;
}