Added Gulp.js for compiling SCSS stylesheets

This commit is contained in:
2022-11-01 18:49:18 -04:00
parent 7c793dac88
commit 91f72d4893
2956 changed files with 361906 additions and 7 deletions

15
node_modules/invert-kv/index.js generated vendored Normal file
View File

@ -0,0 +1,15 @@
'use strict';
module.exports = function (obj) {
if (typeof obj !== 'object') {
throw new TypeError('Expected an object');
}
var ret = {};
for (var key in obj) {
var val = obj[key];
ret[val] = key;
}
return ret;
};

33
node_modules/invert-kv/package.json generated vendored Normal file
View File

@ -0,0 +1,33 @@
{
"name": "invert-kv",
"version": "1.0.0",
"description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}",
"license": "MIT",
"repository": "sindresorhus/invert-kv",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"object",
"obj",
"key",
"value",
"val",
"kv",
"invert"
],
"devDependencies": {
"mocha": "*"
}
}

25
node_modules/invert-kv/readme.md generated vendored Normal file
View File

@ -0,0 +1,25 @@
# invert-kv [![Build Status](https://travis-ci.org/sindresorhus/invert-kv.svg?branch=master)](https://travis-ci.org/sindresorhus/invert-kv)
> Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`
## Install
```sh
$ npm install --save invert-kv
```
## Usage
```js
var invertKv = require('invert-kv');
invertKv({foo: 'bar', unicorn: 'rainbow'});
//=> {bar: 'foo', rainbow: 'unicorn'}
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)