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 |
|---|---|---|---|---|---|---|---|---|
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/incompatible-packages/lib/main.js | packages/incompatible-packages/lib/main.js | /** @babel */
import { Disposable, CompositeDisposable } from 'atom';
import VIEW_URI from './view-uri';
let disposables = null;
export function activate() {
disposables = new CompositeDisposable();
disposables.add(
atom.workspace.addOpener(uri => {
if (uri === VIEW_URI) {
return deserializeIn... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/incompatible-packages/lib/incompatible-packages-component.js | packages/incompatible-packages/lib/incompatible-packages-component.js | /** @babel */
/** @jsx etch.dom */
import etch from 'etch';
import VIEW_URI from './view-uri';
const REBUILDING = 'rebuilding';
const REBUILD_FAILED = 'rebuild-failed';
const REBUILD_SUCCEEDED = 'rebuild-succeeded';
export default class IncompatiblePackagesComponent {
constructor(packageManager) {
this.rebuild... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/incompatible-packages/lib/view-uri.js | packages/incompatible-packages/lib/view-uri.js | /** @babel */
export default 'atom://incompatible-packages';
| javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/one-dark-ui/spec/theme-spec.js | packages/one-dark-ui/spec/theme-spec.js | const themeName = 'one-dark-ui';
describe(`${themeName} theme`, () => {
beforeEach(() => {
waitsForPromise(() => atom.packages.activatePackage(themeName));
});
it('allows the font size to be set via config', () => {
expect(document.documentElement.style.fontSize).toBe('12px');
atom.config.set(`${th... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/one-dark-ui/lib/main.js | packages/one-dark-ui/lib/main.js | const root = document.documentElement;
const themeName = 'one-dark-ui';
module.exports = {
activate(state) {
atom.config.observe(`${themeName}.fontSize`, setFontSize);
atom.config.observe(`${themeName}.tabSizing`, setTabSizing);
atom.config.observe(`${themeName}.tabCloseButton`, setTabCloseButton);
a... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/exception-reporting/spec/reporter-spec.js | packages/exception-reporting/spec/reporter-spec.js | const Reporter = require('../lib/reporter');
const semver = require('semver');
const os = require('os');
const path = require('path');
const fs = require('fs-plus');
let osVersion = `${os.platform()}-${os.arch()}-${os.release()}`;
let getReleaseChannel = version => {
return version.indexOf('beta') > -1
? 'beta'
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/exception-reporting/lib/main.js | packages/exception-reporting/lib/main.js | /** @babel */
import { CompositeDisposable } from 'atom';
let reporter;
function getReporter() {
if (!reporter) {
const Reporter = require('./reporter');
reporter = new Reporter();
}
return reporter;
}
export default {
activate() {
this.subscriptions = new CompositeDisposable();
if (!atom.c... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/exception-reporting/lib/reporter.js | packages/exception-reporting/lib/reporter.js | /** @babel */
import os from 'os';
import stackTrace from 'stack-trace';
import fs from 'fs-plus';
import path from 'path';
const API_KEY = '7ddca14cb60cbd1cd12d1b252473b076';
const LIB_VERSION = require('../package.json')['version'];
const StackTraceCache = new WeakMap();
export default class Reporter {
construct... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/test/welcome.test.js | packages/welcome/test/welcome.test.js | /** @babel */
/* global beforeEach, afterEach, describe, it */
import WelcomePackage from '../lib/welcome-package';
import assert from 'assert';
import { conditionPromise } from './helpers';
describe('Welcome', () => {
let welcomePackage;
beforeEach(() => {
welcomePackage = new WelcomePackage();
atom.con... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/test/helpers.js | packages/welcome/test/helpers.js | /** @babel */
export function conditionPromise(predicate) {
return new Promise(resolve => {
setInterval(() => {
if (predicate()) resolve();
}, 100);
});
}
| javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/lib/welcome-view.js | packages/welcome/lib/welcome-view.js | /** @babel */
/** @jsx etch.dom **/
import etch from 'etch';
export default class WelcomeView {
constructor(props) {
this.props = props;
etch.initialize(this);
this.element.addEventListener('click', event => {
const link = event.target.closest('a');
if (link && link.dataset.event) {
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/lib/main.js | packages/welcome/lib/main.js | /** @babel */
import WelcomePackage from './welcome-package';
export default new WelcomePackage();
| javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/lib/reporter-proxy.js | packages/welcome/lib/reporter-proxy.js | /** @babel */
export default class ReporterProxy {
constructor() {
this.reporter = null;
this.queue = [];
this.eventType = 'welcome-v1';
}
setReporter(reporter) {
this.reporter = reporter;
let customEvent;
while ((customEvent = this.queue.shift())) {
this.reporter.addCustomEvent(t... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/lib/welcome-package.js | packages/welcome/lib/welcome-package.js | /** @babel */
import { CompositeDisposable } from 'atom';
import ReporterProxy from './reporter-proxy';
let WelcomeView, GuideView, ConsentView, SunsettingView;
const SUNSETTING_URI = 'atom://welcome/sunsetting';
const WELCOME_URI = 'atom://welcome/welcome';
const GUIDE_URI = 'atom://welcome/guide';
const CONSENT_UR... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/lib/sunsetting-view.js | packages/welcome/lib/sunsetting-view.js | /** @babel */
/** @jsx etch.dom **/
import etch from 'etch';
export default class SunsettingView {
constructor(props) {
this.props = props;
etch.initialize(this);
this.element.addEventListener('click', event => {
const link = event.target.closest('a');
if (link && link.dataset.event) {
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/lib/guide-view.js | packages/welcome/lib/guide-view.js | /** @babel */
/** @jsx etch.dom **/
import etch from 'etch';
export default class GuideView {
constructor(props) {
this.props = props;
this.didClickProjectButton = this.didClickProjectButton.bind(this);
this.didClickGitButton = this.didClickGitButton.bind(this);
this.didClickGitHubButton = this.didC... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/welcome/lib/consent-view.js | packages/welcome/lib/consent-view.js | 'use babel';
/** @jsx etch.dom */
import etch from 'etch';
export default class ConsentView {
constructor() {
etch.initialize(this);
}
render() {
return (
<div className="welcome">
<div className="welcome-container">
<div className="header">
<a title="atom.io" href="... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/deprecation-cop/lib/main.js | packages/deprecation-cop/lib/main.js | const { Disposable, CompositeDisposable } = require('atom');
const DeprecationCopView = require('./deprecation-cop-view');
const DeprecationCopStatusBarView = require('./deprecation-cop-status-bar-view');
const ViewURI = 'atom://deprecation-cop';
class DeprecationCopPackage {
activate() {
this.disposables = new ... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/deprecation-cop/lib/deprecation-cop-view.js | packages/deprecation-cop/lib/deprecation-cop-view.js | /** @babel */
/** @jsx etch.dom */
import _ from 'underscore-plus';
import { CompositeDisposable } from 'atom';
import etch from 'etch';
import fs from 'fs-plus';
import Grim from 'grim';
import { marked } from 'marked';
import path from 'path';
import { shell } from 'electron';
export default class DeprecationCopVie... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/grammar-selector/spec/grammar-selector-spec.js | packages/grammar-selector/spec/grammar-selector-spec.js | const path = require('path');
const SelectListView = require('atom-select-list');
describe('GrammarSelector', () => {
let [editor, textGrammar, jsGrammar] = [];
beforeEach(async () => {
jasmine.attachToDOM(atom.views.getView(atom.workspace));
atom.config.set('grammar-selector.showOnRightSideOfStatusBar', ... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/grammar-selector/lib/grammar-list-view.js | packages/grammar-selector/lib/grammar-list-view.js | const SelectListView = require('atom-select-list');
module.exports = class GrammarListView {
constructor() {
this.autoDetect = { name: 'Auto Detect' };
this.selectListView = new SelectListView({
itemsClassList: ['mark-active'],
items: [],
filterKeyForItem: grammar => grammar.name,
ele... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/grammar-selector/lib/main.js | packages/grammar-selector/lib/main.js | const GrammarListView = require('./grammar-list-view');
const GrammarStatusView = require('./grammar-status-view');
let commandDisposable = null;
let grammarListView = null;
let grammarStatusView = null;
module.exports = {
activate() {
commandDisposable = atom.commands.add(
'atom-text-editor',
'gram... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/grammar-selector/lib/grammar-status-view.js | packages/grammar-selector/lib/grammar-status-view.js | const { Disposable } = require('atom');
module.exports = class GrammarStatusView {
constructor(statusBar) {
this.statusBar = statusBar;
this.element = document.createElement('grammar-selector-status');
this.element.classList.add('grammar-status', 'inline-block');
this.grammarLink = document.createEle... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/update-package-dependencies/spec/update-package-dependencies-spec.js | packages/update-package-dependencies/spec/update-package-dependencies-spec.js | const os = require('os');
const path = require('path');
const updatePackageDependencies = require('../lib/update-package-dependencies');
describe('Update Package Dependencies', () => {
let projectPath = null;
beforeEach(() => {
projectPath = __dirname;
atom.project.setPaths([projectPath]);
});
descri... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/update-package-dependencies/lib/update-package-dependencies-status-view.js | packages/update-package-dependencies/lib/update-package-dependencies-status-view.js | module.exports = class UpdatePackageDependenciesStatusView {
constructor(statusBar) {
this.statusBar = statusBar;
this.element = document.createElement('update-package-dependencies-status');
this.element.classList.add(
'update-package-dependencies-status',
'inline-block',
'is-read-only'
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/update-package-dependencies/lib/update-package-dependencies.js | packages/update-package-dependencies/lib/update-package-dependencies.js | const { BufferedProcess } = require('atom');
const UpdatePackageDependenciesStatusView = require('./update-package-dependencies-status-view');
module.exports = {
activate() {
this.subscription = atom.commands.add(
'atom-workspace',
'update-package-dependencies:update',
() => this.update()
)... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/link/spec/link-spec.js | packages/link/spec/link-spec.js | const { shell } = require('electron');
describe('link package', () => {
beforeEach(async () => {
await atom.packages.activatePackage('language-gfm');
await atom.packages.activatePackage('language-hyperlink');
const activationPromise = atom.packages.activatePackage('link');
atom.commands.dispatch(ato... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/link/lib/link.js | packages/link/lib/link.js | const url = require('url');
const { shell } = require('electron');
const _ = require('underscore-plus');
const LINK_SCOPE_REGEX = /markup\.underline\.link/;
module.exports = {
activate() {
this.commandDisposable = atom.commands.add(
'atom-text-editor',
'link:open',
() => this.openLink()
);... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/go-to-line/spec/go-to-line-spec.js | packages/go-to-line/spec/go-to-line-spec.js | 'use babel';
/* eslint-env jasmine */
import GoToLineView from '../lib/go-to-line-view';
describe('GoToLine', () => {
let editor = null;
let editorView = null;
let goToLine = null;
beforeEach(() => {
waitsForPromise(() => {
return atom.workspace.open('sample.js');
});
runs(() => {
c... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/go-to-line/spec/fixtures/sample.js | packages/go-to-line/spec/fixtures/sample.js | var quicksort = function () {
var sort = function (items) {
if (items.length <= 1) return items
var pivot = items.shift()
var current
var left = []
var right = []
while (items.length > 0) {
current = items.shift()
current < pivot ? left.push(current) : right.push(current)
}
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/go-to-line/lib/go-to-line-view.js | packages/go-to-line/lib/go-to-line-view.js | 'use babel';
import { Point, TextEditor } from 'atom';
class GoToLineView {
constructor() {
this.miniEditor = new TextEditor({ mini: true });
this.miniEditor.element.addEventListener('blur', this.close.bind(this));
this.message = document.createElement('div');
this.message.classList.add('message');... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/spec/diff-list-view-spec.js | packages/git-diff/spec/diff-list-view-spec.js | const path = require('path');
const fs = require('fs-plus');
const temp = require('temp').track();
describe('git-diff:toggle-diff-list', () => {
let diffListView, editor;
beforeEach(() => {
const projectPath = temp.mkdirSync('git-diff-spec-');
fs.copySync(path.join(__dirname, 'fixtures', 'working-dir'), p... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/spec/git-diff-spec.js | packages/git-diff/spec/git-diff-spec.js | const path = require('path');
const fs = require('fs-plus');
const temp = require('temp').track();
describe('GitDiff package', () => {
let editor, editorElement, projectPath, screenUpdates;
beforeEach(() => {
screenUpdates = 0;
spyOn(window, 'requestAnimationFrame').andCallFake(fn => {
fn();
s... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/spec/init-spec.js | packages/git-diff/spec/init-spec.js | const path = require('path');
const fs = require('fs-plus');
const temp = require('temp').track();
const commands = [
'git-diff:toggle-diff-list',
'git-diff:move-to-next-diff',
'git-diff:move-to-previous-diff'
];
describe('git-diff', () => {
let editor, element;
beforeEach(() => {
const projectPath = t... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/spec/git-diff-subfolder-spec.js | packages/git-diff/spec/git-diff-subfolder-spec.js | const path = require('path');
const fs = require('fs-plus');
const temp = require('temp').track();
describe('GitDiff when targeting nested repository', () => {
let editor, editorElement, projectPath, screenUpdates;
beforeEach(() => {
screenUpdates = 0;
spyOn(window, 'requestAnimationFrame').andCallFake(fn... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/spec/fixtures/working-dir/sample.js | packages/git-diff/spec/fixtures/working-dir/sample.js | module.exports.quicksort = function () {
var sort = function (items) {
if (items.length <= 1) return items
var pivot = items.shift()
var current
var left = []
var right = []
while (items.length > 0) {
current = items.shift()
current < pivot ? left.push(current) : right.push(curren... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/lib/main.js | packages/git-diff/lib/main.js | 'use babel';
import { CompositeDisposable } from 'atom';
import GitDiffView from './git-diff-view';
import DiffListView from './diff-list-view';
let diffListView = null;
let diffViews = new Set();
let subscriptions = null;
export default {
activate(state) {
subscriptions = new CompositeDisposable();
subsc... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/lib/git-diff-view.js | packages/git-diff/lib/git-diff-view.js | 'use babel';
import { CompositeDisposable } from 'atom';
import repositoryForPath from './helpers';
const MAX_BUFFER_LENGTH_TO_DIFF = 2 * 1024 * 1024;
/**
* @describe Handles per-editor event and repository subscriptions.
* @param editor {Atom.TextEditor} - The editor this view will manage.
*/
export default clas... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/lib/helpers.js | packages/git-diff/lib/helpers.js | 'use babel';
import { Directory } from 'atom';
export default async function(goalPath) {
if (goalPath) {
return atom.project.repositoryForDirectory(new Directory(goalPath));
}
return null;
}
| javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/git-diff/lib/diff-list-view.js | packages/git-diff/lib/diff-list-view.js | 'use babel';
import SelectListView from 'atom-select-list';
import repositoryForPath from './helpers';
export default class DiffListView {
constructor() {
this.selectListView = new SelectListView({
emptyMessage: 'No diffs in file',
items: [],
filterKeyForItem: diff => diff.lineText,
elem... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/spec/dev-live-reload-spec.js | packages/dev-live-reload/spec/dev-live-reload-spec.js | describe('Dev Live Reload', () => {
describe('package activation', () => {
let [pack, mainModule] = [];
beforeEach(() => {
pack = atom.packages.loadPackage('dev-live-reload');
pack.requireMainModule();
mainModule = pack.mainModule;
spyOn(mainModule, 'startWatching');
});
desc... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/spec/ui-watcher-spec.js | packages/dev-live-reload/spec/ui-watcher-spec.js | const path = require('path');
const UIWatcher = require('../lib/ui-watcher');
const { conditionPromise } = require('./async-spec-helpers');
describe('UIWatcher', () => {
let uiWatcher = null;
beforeEach(() =>
atom.packages.packageDirPaths.push(path.join(__dirname, 'fixtures'))
);
afterEach(() => uiWatc... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/spec/async-spec-helpers.js | packages/dev-live-reload/spec/async-spec-helpers.js | /** @babel */
export async function conditionPromise(
condition,
description = 'anonymous condition'
) {
const startTime = Date.now();
while (true) {
await timeoutPromise(100);
if (await condition()) {
return;
}
if (Date.now() - startTime > 5000) {
throw new Error('Timed out wait... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/lib/base-theme-watcher.js | packages/dev-live-reload/lib/base-theme-watcher.js | const fs = require('fs-plus');
const path = require('path');
const Watcher = require('./watcher');
module.exports = class BaseThemeWatcher extends Watcher {
constructor() {
super();
this.stylesheetsPath = path.dirname(
atom.themes.resolveStylesheet('../static/atom.less')
);
this.watch();
}
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/lib/main.js | packages/dev-live-reload/lib/main.js | module.exports = {
activate(state) {
if (!atom.inDevMode() || atom.inSpecMode()) return;
if (atom.packages.hasActivatedInitialPackages()) {
this.startWatching();
} else {
this.activatedDisposable = atom.packages.onDidActivateInitialPackages(
() => this.startWatching()
);
}
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/lib/ui-watcher.js | packages/dev-live-reload/lib/ui-watcher.js | const { CompositeDisposable } = require('atom');
const BaseThemeWatcher = require('./base-theme-watcher');
const PackageWatcher = require('./package-watcher');
module.exports = class UIWatcher {
constructor() {
this.subscriptions = new CompositeDisposable();
this.reloadAll = this.reloadAll.bind(this);
t... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/lib/package-watcher.js | packages/dev-live-reload/lib/package-watcher.js | const fs = require('fs-plus');
const Watcher = require('./watcher');
module.exports = class PackageWatcher extends Watcher {
static supportsPackage(pack, type) {
if (pack.getType() === type && pack.getStylesheetPaths().length)
return true;
return false;
}
constructor(pack) {
super();
this... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dev-live-reload/lib/watcher.js | packages/dev-live-reload/lib/watcher.js | const { CompositeDisposable, File, Directory, Emitter } = require('atom');
const path = require('path');
module.exports = class Watcher {
constructor() {
this.destroy = this.destroy.bind(this);
this.emitter = new Emitter();
this.disposables = new CompositeDisposable();
this.entities = []; // Used for... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dalek/test/runner.js | packages/dalek/test/runner.js | const createRunner = require('atom-mocha-test-runner').createRunner;
module.exports = createRunner({ testSuffixes: ['test.js'] });
| javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dalek/test/dalek.test.js | packages/dalek/test/dalek.test.js | /** @babel */
const assert = require('assert');
const fs = require('fs');
const sinon = require('sinon');
const path = require('path');
const dalek = require('../lib/dalek');
describe('dalek', function() {
describe('enumerate', function() {
let availablePackages = {};
let realPaths = {};
let bundledPac... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dalek/lib/main.js | packages/dalek/lib/main.js | /** @babel */
const dalek = require('./dalek');
const Grim = require('grim');
module.exports = {
activate() {
atom.packages.onDidActivateInitialPackages(async () => {
const duplicates = await dalek.enumerate();
for (let i = 0; i < duplicates.length; i++) {
const duplicate = duplicates[i];
... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
atom/atom | https://github.com/atom/atom/blob/1c3bd35ce238dc0491def9e1780d04748d8e18af/packages/dalek/lib/dalek.js | packages/dalek/lib/dalek.js | /** @babel */
const fs = require('fs');
const path = require('path');
module.exports = {
async enumerate() {
if (atom.inDevMode()) {
return [];
}
const duplicatePackages = [];
const names = atom.packages.getAvailablePackageNames();
for (let name of names) {
if (atom.packages.isBundl... | javascript | MIT | 1c3bd35ce238dc0491def9e1780d04748d8e18af | 2026-01-04T14:56:51.056594Z | false |
AMAI-GmbH/AI-Expert-Roadmap | https://github.com/AMAI-GmbH/AI-Expert-Roadmap/blob/a4c66c2670d9004385ed0faa4fb2a729aa6b18d4/.vuepress/config.js | .vuepress/config.js | const container = require('markdown-it-container');
const fs = require('fs');
module.exports = {
title: 'AI Expert Roadmap',
description: 'The i.am.ai Experts Roadmap',
dest: 'public/roadmap',
base: '/roadmap/',
themeConfig: {
repo: 'https://github.com/AMAI-GmbH/AI-Expert-Roadmap',
d... | javascript | MIT | a4c66c2670d9004385ed0faa4fb2a729aa6b18d4 | 2026-01-04T15:01:36.535905Z | false |
VincentGarreau/particles.js | https://github.com/VincentGarreau/particles.js/blob/d01286d6dcd61f497d07cc62bd48e692f6508ad5/particles.js | particles.js | /* -----------------------------------------------
/* Author : Vincent Garreau - vincentgarreau.com
/* MIT license: http://opensource.org/licenses/MIT
/* Demo / Generator : vincentgarreau.com/particles.js
/* GitHub : github.com/VincentGarreau/particles.js
/* How to use? : Check the GitHub README
/* v2.0.0
/* ---------... | javascript | MIT | d01286d6dcd61f497d07cc62bd48e692f6508ad5 | 2026-01-04T15:01:37.832653Z | true |
VincentGarreau/particles.js | https://github.com/VincentGarreau/particles.js/blob/d01286d6dcd61f497d07cc62bd48e692f6508ad5/particles.min.js | particles.min.js | /* -----------------------------------------------
/* Author : Vincent Garreau - vincentgarreau.com
/* MIT license: http://opensource.org/licenses/MIT
/* Demo / Generator : vincentgarreau.com/particles.js
/* GitHub : github.com/VincentGarreau/particles.js
/* How to use? : Check the GitHub README
/* v2.0.0
/* ---------... | javascript | MIT | d01286d6dcd61f497d07cc62bd48e692f6508ad5 | 2026-01-04T15:01:37.832653Z | false |
VincentGarreau/particles.js | https://github.com/VincentGarreau/particles.js/blob/d01286d6dcd61f497d07cc62bd48e692f6508ad5/demo/js/app.js | demo/js/app.js | /* -----------------------------------------------
/* How to use? : Check the GitHub README
/* ----------------------------------------------- */
/* To load a config file (particles.json) you need to host this demo (MAMP/WAMP/local)... */
/*
particlesJS.load('particles-js', 'particles.json', function() {
console.log... | javascript | MIT | d01286d6dcd61f497d07cc62bd48e692f6508ad5 | 2026-01-04T15:01:37.832653Z | false |
VincentGarreau/particles.js | https://github.com/VincentGarreau/particles.js/blob/d01286d6dcd61f497d07cc62bd48e692f6508ad5/demo/js/lib/stats.js | demo/js/lib/stats.js | /**
* @author mrdoob / http://mrdoob.com/
*/
var Stats = function () {
var startTime = Date.now(), prevTime = startTime;
var ms = 0, msMin = Infinity, msMax = 0;
var fps = 0, fpsMin = Infinity, fpsMax = 0;
var frames = 0, mode = 0;
var container = document.createElement( 'div' );
container.id = 'stats';
con... | javascript | MIT | d01286d6dcd61f497d07cc62bd48e692f6508ad5 | 2026-01-04T15:01:37.832653Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/.eslintrc.js | .eslintrc.js | module.exports = {
"rules": {
// the rules below should be sorted in a same way they are sorted on http://eslint.org/docs/rules page
// http://eslint.org/docs/rules/#possible-errors
"no-caller": 2,
"no-control-regex": 2,
"no-empty": 1,
"no-invalid-regexp": 2,
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/Gruntfile.js | Gruntfile.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/tasks/npm-install.js | tasks/npm-install.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/tasks/pack-web-dependencies.js | tasks/pack-web-dependencies.js | /* eslint-env node */
"use strict";
module.exports = function (grunt) {
var _ = require("lodash"),
common = require("./lib/common")(grunt),
build = require("./build")(grunt),
glob = require("glob"),
path = require("path"),
spawn = require("child_process").... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/tasks/test.js | tasks/test.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/tasks/build.js | tasks/build.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/tasks/write-config.js | tasks/write-config.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/tasks/update-release-number.js | tasks/update-release-number.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/tasks/lib/common.js | tasks/lib/common.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/xorigin.js | src/xorigin.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/brackets.js | src/brackets.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/strings.js | src/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/main.js | src/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/dependencies.js | src/dependencies.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/file/FileUtils.js | src/file/FileUtils.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/help/HelpCommandHandlers.js | src/help/HelpCommandHandlers.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/command/Menus.js | src/command/Menus.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/command/Commands.js | src/command/Commands.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/command/CommandManager.js | src/command/CommandManager.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/command/KeyBindingManager.js | src/command/KeyBindingManager.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/command/DefaultMenus.js | src/command/DefaultMenus.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/HtmlEntityCodeHints/unittests.js | src/extensions/default/HtmlEntityCodeHints/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/HtmlEntityCodeHints/main.js | src/extensions/default/HtmlEntityCodeHints/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/InlineTimingFunctionEditor/TimingFunctionUtils.js | src/extensions/default/InlineTimingFunctionEditor/TimingFunctionUtils.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/InlineTimingFunctionEditor/BezierCurveEditor.js | src/extensions/default/InlineTimingFunctionEditor/BezierCurveEditor.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/InlineTimingFunctionEditor/unittests.js | src/extensions/default/InlineTimingFunctionEditor/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 | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/InlineTimingFunctionEditor/main.js | src/extensions/default/InlineTimingFunctionEditor/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/InlineTimingFunctionEditor/StepEditor.js | src/extensions/default/InlineTimingFunctionEditor/StepEditor.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/InlineTimingFunctionEditor/InlineTimingFunctionEditor.js | src/extensions/default/InlineTimingFunctionEditor/InlineTimingFunctionEditor.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/CommandLineTool/main.js | src/extensions/default/CommandLineTool/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/JavaScriptQuickEdit/unittests.js | src/extensions/default/JavaScriptQuickEdit/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 | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/main.js | src/extensions/default/JavaScriptQuickEdit/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/JavaScriptQuickEdit/unittest-files/jquery-ui/grunt.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/grunt.js | /*jshint node: true */
module.exports = function( grunt ) {
var // modules
fs = require( "fs" ),
path = require( "path" ),
request = require( "request" ),
// files
coreFiles = [
"jquery.ui.core.js",
"jquery.ui.widget.js",
"jquery.ui.mouse.js",
"jquery.ui.draggable.js",
"jquery.ui.droppable.js",
"jque... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/jquery-1.7.2.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/jquery-1.7.2.js | /*!
* jQuery JavaScript Library v1.7.2
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.7.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.7.js | /*!
* jQuery JavaScript Library v1.7
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/index.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/index.js | $(function() {
$( "#main" )
.addClass( "ui-widget" )
.find( "h1, h2" )
.addClass( "ui-widget-header ui-corner-top" )
.next()
.addClass( "ui-widget-content ui-corner-bottom" );
});
| javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | false |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.4.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.4.js | /*!
* jQuery JavaScript Library v1.6.4
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.7.2.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.7.2.js | /*!
* jQuery JavaScript Library v1.7.2
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.7.1.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.7.1.js | /*!
* jQuery JavaScript Library v1.7.1
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.2.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.2.js | /*!
* jQuery JavaScript Library v1.6.2
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.js | /*!
* jQuery JavaScript Library v1.6
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.1.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery-1.6.1.js | /*!
* jQuery JavaScript Library v1.6.1
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
... | javascript | MIT | d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a | 2026-01-04T15:00:40.278945Z | true |
adobe/brackets | https://github.com/adobe/brackets/blob/d55ac606ac44e7169dbeaf959c9ed47dac6a6b9a/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery.js | src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/jquery.js | (function() {
var parts = document.location.search.slice( 1 ).split( "&" ),
length = parts.length,
i = 0,
current,
version,
url;
for ( ; i < length; i++ ) {
current = parts[ i ].split( "=" );
if ( current[ 0 ] === "jquery" ) {
version = current[ 1 ];
break;
}
}
if ( version === "git" ) {
url = "http://c... | 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.