Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RegExp (0.19 sec)

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

    const define = (object, key, value) =>
        Object.defineProperty(object, key, {value})
    
    const REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g
    
    const RETURN_FALSE = () => false
    
    // Sanitize the range of a regular expression
    // The cases are complicated, see test cases for details
    const sanitizeRange = range => range.replace(
        REGEX_REGEXP_RANGE,
        (match, from, to) => from.charCodeAt(0) <= to.charCodeAt(0)
            ? match
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. .idea/inspectionProfiles/Gradle.xml

            <constraint name="sep" nameOfExprType="String" exprTypeWithinHierarchy="true" within="" contains="" />
            <constraint name="callJoin" regexp="join" within="" contains="" />
            <constraint name="callCollect" regexp="collect" within="" contains="" />
            <constraint name="transform" within="" contains="" />
          </replaceConfiguration>
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top