File Explorer

/var/lang/lib/node_modules/npm/node_modules/semver

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

5 dirs
6 files
range.bnf619 B · 17 lines
range-set  ::= range ( logical-or range ) *logical-or ::= ( ' ' ) * '||' ( ' ' ) *range      ::= hyphen | simple ( ' ' simple ) * | ''hyphen     ::= partial ' - ' partialsimple     ::= primitive | partial | tilde | caretprimitive  ::= ( '<' | '>' | '>=' | '<=' | '=' ) partialpartial    ::= xr ( '.' xr ( '.' xr qualifier ? )? )?xr         ::= 'x' | 'X' | '*' | nrnr         ::= '0' | [1-9] ( [0-9] ) *tilde      ::= '~' partialcaret      ::= '^' partialqualifier  ::= ( '-' pre )? ( '+' build )?pre        ::= partsbuild      ::= partsparts      ::= part ( '.' part ) *part       ::= nr | [-0-9A-Za-z]+