nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

View File

@@ -1 +0,0 @@
node_modules

View File

@@ -1,9 +1,16 @@
sudo: false
language: node_js
node_js:
- 'iojs'
- 'stable'
- '10'
- '9'
- '8'
- '6'
- '4'
- '0.12'
- '0.10'
- '0.8'
before_install:
- npm install -g npm
# Old npm certs are untrusted https://github.com/npm/npm/issues/20191
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ] || [ "${TRAVIS_NODE_VERSION}" = "0.8" ]; then export NPM_CONFIG_STRICT_SSL=false; fi'
- 'nvm install-latest-npm'

View File

@@ -1,5 +1,7 @@
This software is released under the MIT license:
Copyright (c) James Halliday
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

View File

@@ -1,8 +1,8 @@
{
"_from": "stream-browserify@^2.0.1",
"_id": "stream-browserify@2.0.1",
"_id": "stream-browserify@2.0.2",
"_inBundle": false,
"_integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=",
"_integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
"_location": "/stream-browserify",
"_phantomChildren": {},
"_requested": {
@@ -18,8 +18,8 @@
"_requiredBy": [
"/node-libs-browser"
],
"_resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz",
"_shasum": "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db",
"_resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
"_shasum": "87521d38a44aa7ee91ce1cd2a47df0cb49dd660b",
"_spec": "stream-browserify@^2.0.1",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\node-libs-browser",
"author": {
@@ -28,7 +28,7 @@
"url": "http://substack.net"
},
"bugs": {
"url": "https://github.com/substack/stream-browserify/issues"
"url": "https://github.com/browserify/stream-browserify/issues"
},
"bundleDependencies": false,
"dependencies": {
@@ -38,10 +38,11 @@
"deprecated": false,
"description": "the stream module from node core for browsers",
"devDependencies": {
"safe-buffer": "^5.1.2",
"tape": "^4.2.0",
"typedarray": "~0.0.6"
},
"homepage": "https://github.com/substack/stream-browserify",
"homepage": "https://github.com/browserify/stream-browserify",
"keywords": [
"stream",
"browser",
@@ -52,7 +53,7 @@
"name": "stream-browserify",
"repository": {
"type": "git",
"url": "git://github.com/substack/stream-browserify.git"
"url": "git://github.com/browserify/stream-browserify.git"
},
"scripts": {
"test": "tape test/*.js"
@@ -75,5 +76,5 @@
"android-browser/4.2..latest"
]
},
"version": "2.0.1"
"version": "2.0.2"
}

View File

@@ -2,7 +2,7 @@
the stream module from node core, for browsers!
[![build status](https://secure.travis-ci.org/substack/stream-browserify.svg)](http://travis-ci.org/substack/stream-browserify)
[![build status](https://secure.travis-ci.org/browserify/stream-browserify.svg)](http://travis-ci.org/browserify/stream-browserify)
# methods

View File

@@ -1,5 +1,6 @@
var path = require('path');
var test = require('tape');
var Buffer = require('safe-buffer').Buffer;
var Writable = require('../').Writable;
var inherits = require('inherits');
@@ -18,7 +19,7 @@ TestWritable.prototype._write = function(chunk, encoding, cb) {
cb();
};
var buf = Buffer([ 88 ]);
var buf = Buffer.from([ 88 ]);
test('.writable writing ArrayBuffer', function(t) {
var writable = new TestWritable();