Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

24 lines
512 B

  1. 'use strict';
  2. const path = require('path');
  3. const pathExists = require('path-exists');
  4. const pLocate = require('p-locate');
  5. module.exports = (iterable, opts) => {
  6. opts = Object.assign({
  7. cwd: process.cwd()
  8. }, opts);
  9. return pLocate(iterable, el => pathExists(path.resolve(opts.cwd, el)), opts);
  10. };
  11. module.exports.sync = (iterable, opts) => {
  12. opts = Object.assign({
  13. cwd: process.cwd()
  14. }, opts);
  15. for (const el of iterable) {
  16. if (pathExists.sync(path.resolve(opts.cwd, el))) {
  17. return el;
  18. }
  19. }
  20. };