first commit
This commit is contained in:
5
build/node_modules/css-url-regex/index.js
generated
vendored
Normal file
5
build/node_modules/css-url-regex/index.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
'use strict'
|
||||
|
||||
module.exports = function () {
|
||||
return /url\((.*?)\)/ig
|
||||
}
|
||||
21
build/node_modules/css-url-regex/license
generated
vendored
Normal file
21
build/node_modules/css-url-regex/license
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) John Otander <johnotander@gmail.com> (johnotander.com)
|
||||
|
||||
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, sublicense, 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.
|
||||
60
build/node_modules/css-url-regex/package.json
generated
vendored
Normal file
60
build/node_modules/css-url-regex/package.json
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"_from": "css-url-regex@^1.1.0",
|
||||
"_id": "css-url-regex@1.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=",
|
||||
"_location": "/css-url-regex",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "css-url-regex@^1.1.0",
|
||||
"name": "css-url-regex",
|
||||
"escapedName": "css-url-regex",
|
||||
"rawSpec": "^1.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/imagemin-svgo/svgo"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz",
|
||||
"_shasum": "83834230cc9f74c457de59eebd1543feeb83b7ec",
|
||||
"_spec": "css-url-regex@^1.1.0",
|
||||
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build/node_modules/imagemin-svgo/node_modules/svgo",
|
||||
"author": {
|
||||
"name": "John Otander",
|
||||
"email": "johnotander@gmail.com",
|
||||
"url": "http://johnotander.com/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/johnotander/css-url-regex/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "Regular expression for matching CSS urls.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.2.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/johnotander/css-url-regex",
|
||||
"keywords": [
|
||||
"css",
|
||||
"css-url",
|
||||
"regex",
|
||||
"regexp"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "css-url-regex",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/johnotander/css-url-regex.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "ava"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
}
|
||||
32
build/node_modules/css-url-regex/readme.md
generated
vendored
Normal file
32
build/node_modules/css-url-regex/readme.md
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# css-url-regex [](https://travis-ci.org/johnotander/css-url-regex) [](https://github.com/feross/standard)
|
||||
|
||||
A regular expression for matching CSS urls, `url(foo.css)`.
|
||||
|
||||
## Installation
|
||||
|
||||
```
|
||||
npm i --save css-url-regex
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```javascript
|
||||
var cssUrl = require('css-url-regex')
|
||||
|
||||
cssUrl().test('url(bar.css)') // => true
|
||||
cssUrl().test('kljhsdf') // => false
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
|
||||
## Contributing
|
||||
|
||||
1. Fork it
|
||||
2. Create your feature branch (`git checkout -b my-new-feature`)
|
||||
3. Commit your changes (`git commit -am 'Add some feature'`)
|
||||
4. Push to the branch (`git push origin my-new-feature`)
|
||||
5. Create new Pull Request
|
||||
|
||||
Crafted with <3 by [John Otander](http://johnotander.com).
|
||||
Reference in New Issue
Block a user