progress on migrating to heex templates and font-icons
This commit is contained in:
parent
d43daafdb7
commit
3eff955672
21793 changed files with 2161968 additions and 16895 deletions
assets_old/node_modules/unquote
2
assets_old/node_modules/unquote/.npmignore
generated
vendored
Normal file
2
assets_old/node_modules/unquote/.npmignore
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
test
|
24
assets_old/node_modules/unquote/LICENSE
generated
vendored
Normal file
24
assets_old/node_modules/unquote/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Cameron Lakenen
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sub-license, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
33
assets_old/node_modules/unquote/README.md
generated
vendored
Normal file
33
assets_old/node_modules/unquote/README.md
generated
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
# unquote
|
||||
|
||||
Remove wrapping quotes from a string. Returns an empty string if the first arg is falsey.
|
||||
|
||||
## Installation
|
||||
|
||||
```
|
||||
npm install unquote
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
Example
|
||||
```js
|
||||
var unquote = require('unquote')
|
||||
|
||||
unquote('"hello, world"') // 'hello, world'
|
||||
unquote('\'hello, world\'') // 'hello, world'
|
||||
```
|
||||
|
||||
|
||||
## Running Tests
|
||||
|
||||
```
|
||||
npm test
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
([The MIT License](LICENSE))
|
||||
|
||||
Copyright 2017 Cameron Lakenen
|
14
assets_old/node_modules/unquote/index.js
generated
vendored
Normal file
14
assets_old/node_modules/unquote/index.js
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
var reg = /[\'\"]/
|
||||
|
||||
module.exports = function unquote(str) {
|
||||
if (!str) {
|
||||
return ''
|
||||
}
|
||||
if (reg.test(str.charAt(0))) {
|
||||
str = str.substr(1)
|
||||
}
|
||||
if (reg.test(str.charAt(str.length - 1))) {
|
||||
str = str.substr(0, str.length - 1)
|
||||
}
|
||||
return str
|
||||
}
|
30
assets_old/node_modules/unquote/package.json
generated
vendored
Normal file
30
assets_old/node_modules/unquote/package.json
generated
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"name": "unquote",
|
||||
"version": "1.1.1",
|
||||
"description": "Remove wrapping quotes from a string.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "node test/*"
|
||||
},
|
||||
"author": "Cameron Lakenen <cameron@lakenen.com>",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"tape": "^2.13.4"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/lakenen/node-unquote.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/lakenen/node-unquote/issues"
|
||||
},
|
||||
"homepage": "https://github.com/lakenen/node-unquote",
|
||||
"keywords": [
|
||||
"string",
|
||||
"unquote",
|
||||
"quotes"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue