planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

25
node_modules/isomorphic-base64/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,25 @@
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directory
# Deployed apps should consider commenting this line out:
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
node_modules

30
node_modules/isomorphic-base64/Gruntfile.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
'use strict';
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.initConfig({});
grunt.config('karma', {
options: {
configFile: 'karma.conf.js',
singleRun: true
},
test: {}
});
grunt.config('mochaTest', {
test: {
options: {
reporter: 'spec'
},
src: ['./test.js']
}
});
grunt.registerTask('default', [
'mochaTest',
'karma'
]);
};

3
node_modules/isomorphic-base64/README.md generated vendored Normal file
View File

@@ -0,0 +1,3 @@
# isomorphic-base64
atob and btoa for browsers or node

4
node_modules/isomorphic-base64/browser.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
'use strict';
exports.atob = self.atob.bind(self);
exports.btoa = self.btoa.bind(self);

9
node_modules/isomorphic-base64/index.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
exports.atob = function atob(val) {
return new Buffer(val, 'base64').toString();
};
exports.btoa = function btoa(val) {
return new Buffer(val).toString('base64');
};

86
node_modules/isomorphic-base64/karma.conf.js generated vendored Normal file
View File

@@ -0,0 +1,86 @@
// Karma configuration
// Generated on Mon May 25 2015 23:06:51 GMT-0700 (PDT)
var through = require('through');
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['browserify', 'mocha'],
// list of files / patterns to load in the browser
files: [
'./test.js'
],
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'./test.js': ['browserify']
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome', 'Safari', 'Firefox', 'ChromeCanary', 'Opera'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
browserify: {
debug: true,
transform: ['rewireify', function () {
var chunks = [];
return through(function write(chunk) {
chunks.push(chunk);
}, function end() {
var data = chunks.join('');
// Load the browser version, not the node version.
this.queue(data
.replace(/\.\/index/g, './browser'));
this.queue(null);
});
}]
}
});
};

42
node_modules/isomorphic-base64/package.json generated vendored Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "isomorphic-base64",
"version": "1.0.2",
"description": "atob and btoa for browsers or node",
"main": "index.js",
"browser": "browser.js",
"devDependencies": {
"chai": "^2.3.0",
"grunt": "^0.4.5",
"grunt-karma": "^0.10.1",
"grunt-mocha-test": "^0.12.7",
"karma": "^0.12.32",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.1.12",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.1.10",
"karma-opera-launcher": "^0.1.0",
"karma-safari-launcher": "^0.1.1",
"mocha": "^2.2.5",
"rewireify": "^0.2.0",
"through": "^2.3.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ksheedlo/isomorphic-base64.git"
},
"keywords": [
"isomorphic",
"base64",
"browserify",
"ascii"
],
"author": "Ken Sheedlo <ovrkenthousand@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksheedlo/isomorphic-base64/issues"
},
"homepage": "https://github.com/ksheedlo/isomorphic-base64"
}

16
node_modules/isomorphic-base64/test.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
'use strict';
var expect = require('chai').expect,
isomorphicBase64 = require('./index');
describe('btoa', function () {
it('encodes base64', function () {
expect(isomorphicBase64.btoa('foobaz')).to.equal('Zm9vYmF6');
});
});
describe('atob', function () {
it('decodes base64', function () {
expect(isomorphicBase64.atob('Zm9vYmF6')).to.equal('foobaz');
});
});