JSPM

vs_projectname

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 52
  • Score
    100M100P100Q65650F
  • License MIT

Normalizes a Visual Stuio project name

Package Exports

  • vs_projectname

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vs_projectname) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

VS Project Name Build Status

A helper package for sanitizing Visual Studio project names with unicode character type checking.

var projectName = require('vs_projectname');

projectName('1badStart');    // _badStart
projectName('some name');    // some_name
projectName('noΩmath');      // no_math
projectName('Project.Name'); // Project.Name
projectName('Project_Name'); // Project_Name

Inpsired by OmniSharp/generator-aspnet#256