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 
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