forked from enviPath/enviPy
Current Dev State
This commit is contained in:
5
static/js/ketcher2/node_modules/css-value/History.md
generated
vendored
Normal file
5
static/js/ketcher2/node_modules/css-value/History.md
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
|
||||
0.0.1 / 2010-01-03
|
||||
==================
|
||||
|
||||
* Initial release
|
||||
7
static/js/ketcher2/node_modules/css-value/Makefile
generated
vendored
Normal file
7
static/js/ketcher2/node_modules/css-value/Makefile
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
test:
|
||||
@./node_modules/.bin/mocha \
|
||||
--require should \
|
||||
--reporter spec
|
||||
|
||||
.PHONY: test
|
||||
29
static/js/ketcher2/node_modules/css-value/Readme.md
generated
vendored
Normal file
29
static/js/ketcher2/node_modules/css-value/Readme.md
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
# css-value
|
||||
|
||||
WIP CSS value parser
|
||||
|
||||
## License
|
||||
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
|
||||
|
||||
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.
|
||||
6
static/js/ketcher2/node_modules/css-value/example.js
generated
vendored
Normal file
6
static/js/ketcher2/node_modules/css-value/example.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
var parse = require('./');
|
||||
var str = "14px 1.5 'proxima-nova', 'Helvetica Neue', Arial, Helvetica, sans-serif";
|
||||
|
||||
console.log(parse(str));
|
||||
|
||||
113
static/js/ketcher2/node_modules/css-value/index.js
generated
vendored
Normal file
113
static/js/ketcher2/node_modules/css-value/index.js
generated
vendored
Normal file
@ -0,0 +1,113 @@
|
||||
|
||||
module.exports = parse;
|
||||
|
||||
function parse(str) {
|
||||
return new Parser(str).parse();
|
||||
}
|
||||
|
||||
function Parser(str) {
|
||||
this.str = str;
|
||||
}
|
||||
|
||||
Parser.prototype.skip = function(m){
|
||||
this.str = this.str.slice(m[0].length);
|
||||
};
|
||||
|
||||
Parser.prototype.comma = function(){
|
||||
var m = /^, */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
return { type: 'comma', string: ',' };
|
||||
};
|
||||
|
||||
Parser.prototype.ident = function(){
|
||||
var m = /^([\w-]+) */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
return {
|
||||
type: 'ident',
|
||||
string: m[1]
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.int = function(){
|
||||
var m = /^((\d+)(\S+)?) */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
var n = ~~m[2];
|
||||
var u = m[3];
|
||||
|
||||
return {
|
||||
type: 'number',
|
||||
string: m[1],
|
||||
unit: u || '',
|
||||
value: n
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.float = function(){
|
||||
var m = /^(((?:\d+)?\.\d+)(\S+)?) */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
var n = parseFloat(m[2]);
|
||||
var u = m[3];
|
||||
|
||||
return {
|
||||
type: 'number',
|
||||
string: m[1],
|
||||
unit: u || '',
|
||||
value: n
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.number = function(){
|
||||
return this.float() || this.int();
|
||||
};
|
||||
|
||||
Parser.prototype.double = function(){
|
||||
var m = /^"([^"]*)" */.exec(this.str);
|
||||
if (!m) return m;
|
||||
this.skip(m);
|
||||
return {
|
||||
type: 'string',
|
||||
quote: '"',
|
||||
string: '"' + m[1] + '"',
|
||||
value: m[1]
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.single = function(){
|
||||
var m = /^'([^']*)' */.exec(this.str);
|
||||
if (!m) return m;
|
||||
this.skip(m);
|
||||
return {
|
||||
type: 'string',
|
||||
quote: "'",
|
||||
string: "'" + m[1] + "'",
|
||||
value: m[1]
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.string = function(){
|
||||
return this.single() || this.double();
|
||||
};
|
||||
|
||||
|
||||
Parser.prototype.value = function(){
|
||||
return this.number()
|
||||
|| this.ident()
|
||||
|| this.string()
|
||||
|| this.comma();
|
||||
};
|
||||
|
||||
Parser.prototype.parse = function(){
|
||||
var vals = [];
|
||||
|
||||
while (this.str.length) {
|
||||
var obj = this.value();
|
||||
if (!obj) throw new Error('failed to parse near `' + this.str.slice(0, 10) + '...`');
|
||||
vals.push(obj);
|
||||
}
|
||||
|
||||
return vals;
|
||||
};
|
||||
53
static/js/ketcher2/node_modules/css-value/package.json
generated
vendored
Normal file
53
static/js/ketcher2/node_modules/css-value/package.json
generated
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
{
|
||||
"_from": "css-value@~0.0.1",
|
||||
"_id": "css-value@0.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Xv1sLupeof1rasV+wEJ7GEUkJOo=",
|
||||
"_location": "/css-value",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "css-value@~0.0.1",
|
||||
"name": "css-value",
|
||||
"escapedName": "css-value",
|
||||
"rawSpec": "~0.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "~0.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/webdriverio"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/css-value/-/css-value-0.0.1.tgz",
|
||||
"_shasum": "5efd6c2eea5ea1fd6b6ac57ec0427b18452424ea",
|
||||
"_spec": "css-value@~0.0.1",
|
||||
"_where": "/home/manfred/enviPath/ketcher2/ketcher/node_modules/webdriverio",
|
||||
"author": {
|
||||
"name": "TJ Holowaychuk",
|
||||
"email": "tj@vision-media.ca"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/visionmedia/css-value/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {},
|
||||
"deprecated": false,
|
||||
"description": "CSS value parser",
|
||||
"devDependencies": {
|
||||
"mocha": "~1.9.0",
|
||||
"should": "~1.2.2"
|
||||
},
|
||||
"homepage": "https://github.com/visionmedia/css-value#readme",
|
||||
"keywords": [
|
||||
"css",
|
||||
"parser",
|
||||
"value"
|
||||
],
|
||||
"main": "index",
|
||||
"name": "css-value",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/visionmedia/css-value.git"
|
||||
},
|
||||
"version": "0.0.1"
|
||||
}
|
||||
Reference in New Issue
Block a user