Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for closed (0.14 sec)

  1. .cm/plugins/filters/byCodeowner/ignore/index.js

            // `\` is escaped by step 3
            /(\\)?\[([^\]/]*?)(\\*)($|\])/g,
            (match, leadEscape, range, endEscape, close) => leadEscape === ESCAPE
                // '\\[bar]' -> '\\\\[bar\\]'
                ? `\\[${range}${cleanRangeBackSlash(endEscape)}${close}`
                : close === ']'
                    ? endEscape.length % 2 === 0
                        // A normal case, and it is a range notation
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. misc/wasm/wasm_exec.js

    					return;
    				}
    				const n = this.writeSync(fd, buf);
    				callback(null, n);
    			},
    			chmod(path, mode, callback) { callback(enosys()); },
    			chown(path, uid, gid, callback) { callback(enosys()); },
    			close(fd, callback) { callback(enosys()); },
    			fchmod(fd, mode, callback) { callback(enosys()); },
    			fchown(fd, uid, gid, callback) { callback(enosys()); },
    			fstat(fd, callback) { callback(enosys()); },
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
Back to top