Uncluttered/test-utils/chai.js

1 line
2.0 MiB
JavaScript
Raw Normal View History

2023-11-26 21:36:58 +01:00
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":".github","path":".github","contentType":"directory"},{"name":"lib","path":"lib","contentType":"directory"},{"name":"support","path":"support","contentType":"directory"},{"name":"test","path":"test","contentType":"directory"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".mailmap","path":".mailmap","contentType":"file"},{"name":".npmignore","path":".npmignore","contentType":"file"},{"name":".travis.yml","path":".travis.yml","contentType":"file"},{"name":"CODEOWNERS","path":"CODEOWNERS","contentType":"file"},{"name":"CODE_OF_CONDUCT.md","path":"CODE_OF_CONDUCT.md","contentType":"file"},{"name":"CONTRIBUTING.md","path":"CONTRIBUTING.md","contentType":"file"},{"name":"History.md","path":"History.md","contentType":"file"},{"name":"LICENSE","path":"LICENSE","contentType":"file"},{"name":"Makefile","path":"Makefile","contentType":"file"},{"name":"README.md","path":"README.md","contentType":"file"},{"name":"ReleaseNotes.md","path":"ReleaseNotes.md","contentType":"file"},{"name":"bower.json","path":"bower.json","contentType":"file"},{"name":"chai.js","path":"chai.js","contentType":"file"},{"name":"index.js","path":"index.js","contentType":"file"},{"name":"index.mjs","path":"index.mjs","contentType":"file"},{"name":"karma.conf.js","path":"karma.conf.js","contentType":"file"},{"name":"karma.sauce.js","path":"karma.sauce.js","contentType":"file"},{"name":"package-lock.json","path":"package-lock.json","contentType":"file"},{"name":"package.json","path":"package.json","contentType":"file"},{"name":"register-assert.js","path":"register-assert.js","contentType":"file"},{"name":"register-expect.js","path":"register-expect.js","contentType":"file"},{"name":"register-should.js","path":"register-should.js","contentType":"file"},{"name":"sauce.browsers.js","path":"sauce.browsers.js","contentType":"file"}],"totalCount":28}},"fileTreeProcessingTime":7.092865000000001,"foldersToFetch":[],"reducedMotionEnabled":null,"repo":{"id":2931111,"defaultBranch":"4.x.x","name":"chai","ownerLogin":"chaijs","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2011-12-07T08:06:35.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1515293?v=4","public":true,"private":false,"isOrgOwned":true},"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"v4.3.10","listCacheKey":"v0:1698664297.0","canEdit":false,"refType":"tag","currentOid":"744a16e1cc4e8a9c6d4499e1e520a0bc4c80ec18"},"path":"chai.js","currentUser":null,"blob":{"rawLines":["(function(f){if(typeof exports===\"object\"&&typeof module!==\"undefined\"){module.exports=f()}else if(typeof define===\"function\"&&define.amd){define([],f)}else{var g;if(typeof window!==\"undefined\"){g=window}else if(typeof global!==\"undefined\"){g=global}else if(typeof self!==\"undefined\"){g=self}else{g=this}g.chai = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){","module.exports = require('./lib/chai');","","},{\"./lib/chai\":2}],2:[function(require,module,exports){","/*!"," * chai"," * Copyright(c) 2011-2014 Jake Luer <jake@alogicalparadox.com>"," * MIT Licensed"," */","","var used = [];","","/*!"," * Chai version"," */","","exports.version = '4.3.8';","","/*!"," * Assertion Error"," */","","exports.AssertionError = require('assertion-error');","","/*!"," * Utils for plugins (not exported)"," */","","var util = require('./chai/utils');","","/**"," * # .use(function)"," *"," * Provides a way to extend the internals of Chai."," *"," * @param {Function}"," * @returns {this} for chaining"," *