repo stringlengths 5 106 | file_url stringlengths 78 301 | file_path stringlengths 4 211 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:56:49 2026-01-05 02:23:25 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/node_modules/qs/index.js | src/extensions/default/StaticServer/node/node_modules/connect/node_modules/qs/index.js | /**
* Object#toString() ref for stringify().
*/
var toString = Object.prototype.toString;
/**
* Object#hasOwnProperty ref
*/
var hasOwnProperty = Object.prototype.hasOwnProperty;
/**
* Array#indexOf shim.
*/
var indexOf = typeof Array.prototype.indexOf === 'function'
? function(arr, el) { return arr.indexO... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/index.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/index.js |
/**
* Connect is a middleware framework for node,
* shipping with over 18 bundled middleware and a rich selection of
* 3rd-party middleware.
*
* var app = connect()
* .use(connect.logger('dev'))
* .use(connect.static('public'))
* .use(function(req, res){
* res.end('hello world\n'... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/cache.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/cache.js |
/*!
* Connect - Cache
* Copyright(c) 2011 Sencha Inc.
* MIT Licensed
*/
/**
* Expose `Cache`.
*/
module.exports = Cache;
/**
* LRU cache store.
*
* @param {Number} limit
* @api private
*/
function Cache(limit) {
this.store = {};
this.keys = [];
this.limit = limit;
}
/**
* Touch `key`, promoting ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/connect.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/connect.js | /*!
* Connect
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var EventEmitter = require('events').EventEmitter
, proto = require('./proto')
, utils = require('./utils')
, path = require('path')
, basename = path.basename
, fs = requi... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/patch.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/patch.js |
/*!
* Connect
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var http = require('http')
, res = http.ServerResponse.prototype
, setHeader = res.setHeader
, _renderHeaders = res._renderHeaders
, writeHead = res.writeHead;
// apply only once
if (!res._hasConnectPatch... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/proto.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/proto.js |
/*!
* Connect - HTTPServer
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var http = require('http')
, utils = require('./utils')
, debug = require('debug')('connect:dispatcher');
// prototype
var app = module.exports = {};
// environm... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/utils.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/utils.js |
/*!
* Connect - utils
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var http = require('http')
, crypto = require('crypto')
, parse = require('url').parse
, signature = require('cookie-signature')
, nodeVersion = process.versions.nod... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/multipart.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/multipart.js | /*!
* Connect - multipart
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var multiparty = require('multiparty')
, _limit = require('./limit')
, utils = require('../utils')
, qs = require('qs');
/**
* Multipart:
*
* Parse multipart/f... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/compress.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/compress.js | /*!
* Connect - compress
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var zlib = require('zlib');
var utils = require('../utils');
/**
* Supported content-encoding methods.
*/
exports.methods = {
gzip: zlib.createGzip
, deflate: zl... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/bodyParser.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/bodyParser.js |
/*!
* Connect - bodyParser
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var multipart = require('./multipart')
, urlencoded = require('./urlencoded')
, json = require('./json');
/**
* Body parser:
*
* Parse request bodies, suppor... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/responseTime.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/responseTime.js |
/*!
* Connect - responseTime
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Reponse time:
*
* Adds the `X-Response-Time` header displaying the response
* duration in milliseconds.
*
* @return {Function}
* @api public
*/
module.exports = function responseTime(){
return function(req, res, nex... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/staticCache.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/staticCache.js |
/*!
* Connect - staticCache
* Copyright(c) 2011 Sencha Inc.
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../utils')
, Cache = require('../cache')
, fresh = require('fresh');
/**
* Static cache:
*
* Enables a memory cache layer on top of
* the `static()` middleware, serving popu... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/cookieParser.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/cookieParser.js |
/*!
* Connect - cookieParser
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('./../utils')
, cookie = require('cookie');
/**
* Cookie parser:
*
* Parse _Cookie_ header and populate `req.cookies`
* with an object keye... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/errorHandler.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/errorHandler.js | /*!
* Connect - errorHandler
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../utils')
, fs = require('fs');
// environment
var env = process.env.NODE_ENV || 'development';
/**
* Error handler:
*
* Development erro... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/vhost.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/vhost.js |
/*!
* Connect - vhost
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Vhost:
*
* Setup vhost for the given `hostname` and `server`.
*
* connect()
* .use(connect.vhost('foo.com', fooApp))
* .use(connect.vhost('bar.com', barApp))
* .use(con... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/urlencoded.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/urlencoded.js |
/*!
* Connect - urlencoded
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../utils')
, _limit = require('./limit')
, qs = require('qs');
/**
* noop middleware.
*/
function noop(req, res, next) {
next();
}
/**
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/directory.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/directory.js |
/*!
* Connect - directory
* Copyright(c) 2011 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
// TODO: icon / style for directories
// TODO: arrow key navigation
// TODO: make icons extensible
/**
* Module dependencies.
*/
var fs = require('fs')
, parse = require('url').parse
, utils = r... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/csrf.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/csrf.js | /*!
* Connect - csrf
* Copyright(c) 2011 Sencha Inc.
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../utils');
var uid = require('uid2');
var crypto = require('crypto');
/**
* Anti CSRF:
*
* CSRF protection middleware.
*
* This middleware adds a `req.csrfToken()` function to make a ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/query.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/query.js | /*!
* Connect - query
* Copyright(c) 2011 TJ Holowaychuk
* Copyright(c) 2011 Sencha Inc.
* MIT Licensed
*/
/**
* Module dependencies.
*/
var qs = require('qs')
, parse = require('../utils').parseUrl;
/**
* Query:
*
* Automatically parse the query-string when available,
* populating the `req.query` objec... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/limit.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/limit.js |
/*!
* Connect - limit
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../utils'),
brokenPause = utils.brokenPause;
/**
* Limit:
*
* Limit request bodies to the given size in `bytes`.
*
* A string representation of the bytesize may also be pass... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/logger.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/logger.js | /*!
* Connect - logger
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var bytes = require('bytes');
/*!
* Log buffer.
*/
var buf = [];
/*!
* Default log buffer duration.
*/
var defaultBufferDuration = 1000;
/**
* Logger:
*
* Log re... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/favicon.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/favicon.js | /*!
* Connect - favicon
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var fs = require('fs')
, utils = require('../utils');
/**
* Favicon:
*
* By default serves the connect favicon, or the favicon
* located by the given `path`.
*
* O... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/cookieSession.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/cookieSession.js | /*!
* Connect - cookieSession
* Copyright(c) 2011 Sencha Inc.
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('./../utils')
, Cookie = require('./session/cookie')
, debug = require('debug')('connect:cookieSession')
, signature = require('cookie-signature')
, crc32 = require('buffer-c... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/timeout.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/timeout.js | /*!
* Connect - timeout
* Ported from https://github.com/LearnBoost/connect-timeout
* MIT Licensed
*/
/**
* Module dependencies.
*/
var debug = require('debug')('connect:timeout');
/**
* Timeout:
*
* Times out the request in `ms`, defaulting to `5000`. The
* method `req.clearTimeout()` is added to revert t... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/basicAuth.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/basicAuth.js | /*!
* Connect - basicAuth
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../utils')
, unauthorized = utils.unauthorized;
/**
* Basic Auth:
*
* Enfore basic authentication by providing a `callback(user, pass)`,
* whi... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/json.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/json.js |
/*!
* Connect - json
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../utils')
, _limit = require('./limit');
/**
* JSON:
*
* Parse JSON request bodies, providing the
* parsed object as `req.body`.
*
* Options:
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/static.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/static.js | /*!
* Connect - static
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var send = require('send')
, utils = require('../utils')
, parse = utils.parseUrl
, url = require('url');
/**
* Static:
*
* Static file server with the given `ro... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/methodOverride.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/methodOverride.js |
/*!
* Connect - methodOverride
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var methods = require('methods');
/**
* Method Override:
*
* Provides faux HTTP method support.
*
* Pass an optional `key` to use when checking for
* a metho... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session.js | /*!
* Connect - session
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Session = require('./session/session')
, debug = require('debug')('connect:session')
, MemoryStore = require('./session/memory')
, signature = require('cookie-sig... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/cookie.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/cookie.js |
/*!
* Connect - session - Cookie
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../../utils')
, cookie = require('cookie');
/**
* Initialize a new `Cookie` with the given `options`.
*
* @param {IncomingMessage} req
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/memory.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/memory.js |
/*!
* Connect - session - MemoryStore
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Store = require('./store');
/**
* Initialize a new `MemoryStore`.
*
* @api public
*/
var MemoryStore = module.exports = function MemoryStore() {
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/store.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/store.js |
/*!
* Connect - session - Store
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var EventEmitter = require('events').EventEmitter
, Session = require('./session')
, Cookie = require('./cookie');
/**
* Initialize abstract `Store`.
*
* @... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/session.js | src/extensions/default/StaticServer/node/node_modules/connect/lib/middleware/session/session.js |
/*!
* Connect - session - Session
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* MIT Licensed
*/
/**
* Module dependencies.
*/
var utils = require('../../utils');
/**
* Create a new `Session` with the given request and `data`.
*
* @param {IncomingRequest} req
* @param {Object} data
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/HandlebarsSupport/main.js | src/extensions/default/HandlebarsSupport/main.js | /*
* Copyright (c) 2015 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/RemoteFileAdapter/unittests.js | src/extensions/default/RemoteFileAdapter/unittests.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/RemoteFileAdapter/main.js | src/extensions/default/RemoteFileAdapter/main.js | /*
* Copyright (c) 2018 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/RemoteFileAdapter/RemoteFile.js | src/extensions/default/RemoteFileAdapter/RemoteFile.js | /*
* Copyright (c) 2018 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/InlineColorEditor/unittests.js | src/extensions/default/InlineColorEditor/unittests.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/InlineColorEditor/main.js | src/extensions/default/InlineColorEditor/main.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/InlineColorEditor/ColorEditor.js | src/extensions/default/InlineColorEditor/ColorEditor.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/InlineColorEditor/InlineColorEditor.js | src/extensions/default/InlineColorEditor/InlineColorEditor.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/InlineColorEditor/thirdparty/tinycolor-min.js | src/extensions/default/InlineColorEditor/thirdparty/tinycolor-min.js | // TinyColor v1.1.1
// https://github.com/bgrins/TinyColor
// 2014-12-20, Brian Grinstead, MIT License
!function(){function inputToRGB(color){var rgb={r:0,g:0,b:0},a=1,ok=!1,format=!1;return"string"==typeof color&&(color=stringInputToObject(color)),"object"==typeof color&&(color.hasOwnProperty("r")&&color.hasOwnPropert... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CSSAtRuleCodeHints/unittests.js | src/extensions/default/CSSAtRuleCodeHints/unittests.js | /*
* Copyright (c) 2017 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CSSAtRuleCodeHints/main.js | src/extensions/default/CSSAtRuleCodeHints/main.js | /*
* Copyright (c) 2017 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CSSPseudoSelectorHints/unittests.js | src/extensions/default/CSSPseudoSelectorHints/unittests.js | /*
* Copyright (c) 2017 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CSSPseudoSelectorHints/main.js | src/extensions/default/CSSPseudoSelectorHints/main.js | /*
* Copyright (c) 2017 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/OpenWithExternalApplication/GraphicsFile.js | src/extensions/default/OpenWithExternalApplication/GraphicsFile.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/OpenWithExternalApplication/main.js | src/extensions/default/OpenWithExternalApplication/main.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/OpenWithExternalApplication/node/OpenWithExternalApplicationDomain.js | src/extensions/default/OpenWithExternalApplication/node/OpenWithExternalApplicationDomain.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/unittests.js | src/extensions/default/CodeFolding/unittests.js | /**
* Codefolding unit test files
* @author Patrick Oladimeji
* @date 01/08/2015 18:34
*/
/*global describe, beforeEach, afterEach, it, expect, runs, waitsForDone, waitsFor*/
define(function (require, exports, module) {
"use strict";
var SpecRunnerUtils = brackets.getModule("spec/SpecRunnerUtils"),
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/main.js | src/extensions/default/CodeFolding/main.js | /*
* Copyright (c) 2013 Patrick Oladimeji. All rights reserved.
*
* 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, ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/Prefs.js | src/extensions/default/CodeFolding/Prefs.js | /**
* Wrapper around brackets pref system to ensure preferences are stored in in one single object instead of using multiple keys.
* This is to make it easy for the user who edits their preferences file to easily manage the potentially numerous lines of preferences generated by the persisting code-folding state.
* @... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/foldhelpers/handlebarsFold.js | src/extensions/default/CodeFolding/foldhelpers/handlebarsFold.js | /*
* Copyright (c) 2016 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/foldhelpers/indentFold.js | src/extensions/default/CodeFolding/foldhelpers/indentFold.js | /**
* Fold range finder based on line indentations. Ignores blank lines and commented lines
* @author Patrick Oladimeji
* @date 12/27/13 21:54:41 PM
*/
define(function (require, exports, module) {
"use strict";
var CodeMirror = brackets.getModule("thirdparty/CodeMirror/lib/codemirror"),
cols ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/foldhelpers/foldSelected.js | src/extensions/default/CodeFolding/foldhelpers/foldSelected.js | /**
* Selection range helper for code folding.
* @author Patrick Oladimeji
* @date 31/07/2015 00:11:53
*/
define(function (require, exports, module) {
"use strict";
/**
* This helper returns the start and end range representing the current selection in the editor.
* @param {Object} cm The C... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/foldhelpers/foldcode.js | src/extensions/default/CodeFolding/foldhelpers/foldcode.js | // CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
// Based on http://codemirror.net/addon/fold/foldcode.js
// Modified by Patrick Oladimeji for Brackets
define(function (require, exports, module) {
"use strict";
var CodeMirror ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/foldhelpers/foldgutter.js | src/extensions/default/CodeFolding/foldhelpers/foldgutter.js | // CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
// Based on http://codemirror.net/addon/fold/foldgutter.js
// Modified by Patrick Oladimeji for Brackets
define(function (require, exports, module) {
"use strict";
var CodeMirror ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/CodeFolding/unittest-files/test.js | src/extensions/default/CodeFolding/unittest-files/test.js | /**
* Synchronises the code folding states in the CM doc to cm._lineFolds cache.
* When an undo operation is done, if folded code fragments are restored, then
* we need to update cm._lineFolds with the fragments
* @param {Object} cm cm the CodeMirror instance for the active editor
* @param {Object} ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/LocalizationExample/strings.js | src/extensions/samples/LocalizationExample/strings.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/LocalizationExample/main.js | src/extensions/samples/LocalizationExample/main.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/LocalizationExample/nls/strings.js | src/extensions/samples/LocalizationExample/nls/strings.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/LocalizationExample/nls/root/strings.js | src/extensions/samples/LocalizationExample/nls/root/strings.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/LocalizationExample/nls/fr/strings.js | src/extensions/samples/LocalizationExample/nls/fr/strings.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/TypingSpeedLogger/main.js | src/extensions/samples/TypingSpeedLogger/main.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/circular_dependency_test/secondary.js | src/extensions/samples/circular_dependency_test/secondary.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/circular_dependency_test/main.js | src/extensions/samples/circular_dependency_test/main.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/BracketsConfigCentral/main.js | src/extensions/samples/BracketsConfigCentral/main.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/InlineImageViewer/InlineImageViewer.js | src/extensions/samples/InlineImageViewer/InlineImageViewer.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/InlineImageViewer/main.js | src/extensions/samples/InlineImageViewer/main.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/samples/ContextMenuTest/main.js | src/extensions/samples/ContextMenuTest/main.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/InlineWidget.js | src/editor/InlineWidget.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/EditorManager.js | src/editor/EditorManager.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/CSSInlineEditor.js | src/editor/CSSInlineEditor.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/MultiRangeInlineEditor.js | src/editor/MultiRangeInlineEditor.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/EditorStatusBar.js | src/editor/EditorStatusBar.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/Editor.js | src/editor/Editor.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/InlineTextEditor.js | src/editor/InlineTextEditor.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/EditorCommandHandlers.js | src/editor/EditorCommandHandlers.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/ImageViewer.js | src/editor/ImageViewer.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/EditorOptionHandlers.js | src/editor/EditorOptionHandlers.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/CodeHintManager.js | src/editor/CodeHintManager.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/editor/CodeHintList.js | src/editor/CodeHintList.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/ProjectModel.js | src/project/ProjectModel.js | /*
* Copyright (c) 2014 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/FileSyncManager.js | src/project/FileSyncManager.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/WorkingSetSort.js | src/project/WorkingSetSort.js | /*
* Copyright (c) 2014 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/WorkingSetView.js | src/project/WorkingSetView.js | /*
* Copyright (c) 2014 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/FileTreeView.js | src/project/FileTreeView.js | /*
* Copyright (c) 2014 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/SidebarView.js | src/project/SidebarView.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/FileTreeViewModel.js | src/project/FileTreeViewModel.js | /*
* Copyright (c) 2014 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/FileViewController.js | src/project/FileViewController.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/project/ProjectManager.js | src/project/ProjectManager.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/DragAndDrop.js | src/utils/DragAndDrop.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
*... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/KeyEvent.js | src/utils/KeyEvent.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/ViewUtils.js | src/utils/ViewUtils.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/AnimationUtils.js | src/utils/AnimationUtils.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/StringUtils.js | src/utils/StringUtils.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/UrlParams.js | src/utils/UrlParams.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/ColorUtils.js | src/utils/ColorUtils.js | /*
* Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/LocalizationUtils.js | src/utils/LocalizationUtils.js | /*
* Copyright (c) 2014 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/utils/ExtensionLoader.js | src/utils/ExtensionLoader.js | /*
* Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.