Pinned Loading
-
-
Typescript CriticalSection
Typescript CriticalSection 1interface Pending {
2resolve: (value: any) => void;
3reject: (error: any) => void;
4criticalSection: () => Promise<unknown>;
5}
-
split4sync
split4sync PublicSplit large files into multiple parts to prevent synchronization failures due to file size limitations
Makefile
-
remove invisible elements from DOM tree
remove invisible elements from DOM tree 1var InfiniteScroll = window.InfiniteScroll = (function () {
2var instanceKey = window.Symbol ? Symbol('InfiniteScroll') : '__IE_POLYFILL__SYMBOL__INFINITE_SCROLL';
3function result(options) {
4if (!(this instanceof result)) {
5throw new Error('InfiniteScroll must called with new operator and options object');
-
-
Input autocompletion
Input autocompletion 1var InputAutocomplete = window.InputAutocomplete = (function () {
2function result(options) {
3if (!(this instanceof result)) throw new Error('InputAutocomplete is a constructor');
4if (!options) throw new Error('InputAutocomplete requires options to be provided');
5this.inputElement = options.inputElement;
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.