Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <p align="center">
  2. <a href="https://gulpjs.com">
  3. <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png">
  4. </a>
  5. </p>
  6. # glob-parent
  7. [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Azure Pipelines Build Status][azure-pipelines-image]][azure-pipelines-url] [![Travis Build Status][travis-image]][travis-url] [![AppVeyor Build Status][appveyor-image]][appveyor-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]
  8. Extract the non-magic parent path from a glob string.
  9. ## Usage
  10. ```js
  11. var globParent = require('glob-parent');
  12. globParent('path/to/*.js'); // 'path/to'
  13. globParent('/root/path/to/*.js'); // '/root/path/to'
  14. globParent('/*.js'); // '/'
  15. globParent('*.js'); // '.'
  16. globParent('**/*.js'); // '.'
  17. globParent('path/{to,from}'); // 'path'
  18. globParent('path/!(to|from)'); // 'path'
  19. globParent('path/?(to|from)'); // 'path'
  20. globParent('path/+(to|from)'); // 'path'
  21. globParent('path/*(to|from)'); // 'path'
  22. globParent('path/@(to|from)'); // 'path'
  23. globParent('path/**/*'); // 'path'
  24. // if provided a non-glob path, returns the nearest dir
  25. globParent('path/foo/bar.js'); // 'path/foo'
  26. globParent('path/foo/'); // 'path/foo'
  27. globParent('path/foo'); // 'path' (see issue #3 for details)
  28. ```
  29. ## API
  30. ### `globParent(maybeGlobString, [options])`
  31. Takes a string and returns the part of the path before the glob begins. Be aware of Escaping rules and Limitations below.
  32. #### options
  33. ```js
  34. {
  35. // Disables the automatic conversion of slashes for Windows
  36. flipBackslashes: true
  37. }
  38. ```
  39. ## Escaping
  40. The following characters have special significance in glob patterns and must be escaped if you want them to be treated as regular path characters:
  41. - `?` (question mark) unless used as a path segment alone
  42. - `*` (asterisk)
  43. - `|` (pipe)
  44. - `(` (opening parenthesis)
  45. - `)` (closing parenthesis)
  46. - `{` (opening curly brace)
  47. - `}` (closing curly brace)
  48. - `[` (opening bracket)
  49. - `]` (closing bracket)
  50. **Example**
  51. ```js
  52. globParent('foo/[bar]/') // 'foo'
  53. globParent('foo/\\[bar]/') // 'foo/[bar]'
  54. ```
  55. ## Limitations
  56. ### Braces & Brackets
  57. This library attempts a quick and imperfect method of determining which path
  58. parts have glob magic without fully parsing/lexing the pattern. There are some
  59. advanced use cases that can trip it up, such as nested braces where the outer
  60. pair is escaped and the inner one contains a path separator. If you find
  61. yourself in the unlikely circumstance of being affected by this or need to
  62. ensure higher-fidelity glob handling in your library, it is recommended that you
  63. pre-process your input with [expand-braces] and/or [expand-brackets].
  64. ### Windows
  65. Backslashes are not valid path separators for globs. If a path with backslashes
  66. is provided anyway, for simple cases, glob-parent will replace the path
  67. separator for you and return the non-glob parent path (now with
  68. forward-slashes, which are still valid as Windows path separators).
  69. This cannot be used in conjunction with escape characters.
  70. ```js
  71. // BAD
  72. globParent('C:\\Program Files \\(x86\\)\\*.ext') // 'C:/Program Files /(x86/)'
  73. // GOOD
  74. globParent('C:/Program Files\\(x86\\)/*.ext') // 'C:/Program Files (x86)'
  75. ```
  76. If you are using escape characters for a pattern without path parts (i.e.
  77. relative to `cwd`), prefix with `./` to avoid confusing glob-parent.
  78. ```js
  79. // BAD
  80. globParent('foo \\[bar]') // 'foo '
  81. globParent('foo \\[bar]*') // 'foo '
  82. // GOOD
  83. globParent('./foo \\[bar]') // 'foo [bar]'
  84. globParent('./foo \\[bar]*') // '.'
  85. ```
  86. ## License
  87. ISC
  88. [expand-braces]: https://github.com/jonschlinkert/expand-braces
  89. [expand-brackets]: https://github.com/jonschlinkert/expand-brackets
  90. [downloads-image]: https://img.shields.io/npm/dm/glob-parent.svg
  91. [npm-url]: https://www.npmjs.com/package/glob-parent
  92. [npm-image]: https://img.shields.io/npm/v/glob-parent.svg
  93. [azure-pipelines-url]: https://dev.azure.com/gulpjs/gulp/_build/latest?definitionId=2&branchName=master
  94. [azure-pipelines-image]: https://dev.azure.com/gulpjs/gulp/_apis/build/status/glob-parent?branchName=master
  95. [travis-url]: https://travis-ci.org/gulpjs/glob-parent
  96. [travis-image]: https://img.shields.io/travis/gulpjs/glob-parent.svg?label=travis-ci
  97. [appveyor-url]: https://ci.appveyor.com/project/gulpjs/glob-parent
  98. [appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/glob-parent.svg?label=appveyor
  99. [coveralls-url]: https://coveralls.io/r/gulpjs/glob-parent
  100. [coveralls-image]: https://img.shields.io/coveralls/gulpjs/glob-parent/master.svg
  101. [gitter-url]: https://gitter.im/gulpjs/gulp
  102. [gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg