to-file-path

Create a filepath from an object path (dot notation), list of arguments, array, number or Arguments object.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
to-file-path
3.0.0a year ago8 years agoMinified + gzip package size for to-file-path in KB

Readme

Create a filepath from an object path (dot notation), list of arguments, array, number or Arguments object.

Please consider following this project's author, Charlike Mike Reagent, and :star: the project to show your :heart: and support.

!Code stylecodestyle-imgcodestyle-url !CircleCI linux buildlinuxbuild-imglinuxbuild-url !CodeCov coverage statuscodecoverage-imgcodecoverage-url !Renovate App Statusrenovateapp-imgrenovateapp-url !Make A Pull Requestprs-welcome-imgprs-welcome-url !Time Since Last Commitlast-commit-imglast-commit-url

If you have any how-to kind of questions, please read the Contributing Guidecontributing-url and Code of Conductcodeofconduct-url documents. For bugs reports and feature requests, please create an issueopen-issue-url or ping @tunnckoCore at Twitter.
!Conventional Commitsccommits-imgccommits-url !Minimum Required Nodejsnodejs-imgnpmv-url !NPM Downloads Monthlydownloads-monthly-imgnpmv-url !NPM Downloads Totaldownloads-total-imgnpmv-url !Share Love Tweettwitter-share-imgtwitter-share-url !Twittertwitter-imgtwitter-url
Project is semantically versioned & automatically released from GitHub Actions with Lerna.
!Become a Patronpatreon-imgpatreon-url !Buy me a Kofikofi-imgkofi-url !PayPal Donationpaypal-imgpaypal-url !Bitcoin Coinbasebitcoin-imgbitcoin-url !Keybase PGPkeybase-imgkeybase-url
| Topic | Contact | | :--------------------------------------------------------------- | ------------------------------------------------: | | Any legal or licensing questions, like private or commerical use | !tunnckocorelegaltunnckocorelegal | | For any critical problems and security reports | !tunnckocoresecuritytunnckocoresecurity | | Consulting, professional support, personal or team training | !tunnckocoreconsultingtunnckocoreconsulting | | For any questions about Open Source, partnerships and sponsoring | !tunnckocoreopensourcetunnckocoreopensource |

Table of Contents

- toFilePath - Guides and Community - Support the project
(TOC generated by verb using markdown-toc)

Install

This project requires Node.js
>=10.13 (see Support & Release Policy). Install it using yarn or npm.
We highly recommend to use Yarn when you think to contribute to this project.
$ yarn add to-file-path

API


Generated using jest-runner-docs.

toFilePath

Create filepath from different type of arguments.

Signature

function(args)

Params

  • ...args {string|array|Arguments|number|boolean} - Pass any type and any
number of arguments.
  • returns {string} - always slash separated filepath

Examples

import toFilePath from 'to-file-path';

console.log(toFilePath('foo.bar.baz')); // => 'foo/bar/baz'
console.log(toFilePath('foo.bar', 'qux.baz', 'xxx')); // => 'foo/bar/qux/baz/xxx'
console.log(toFilePath('foo', 'qux', 'baz')); // => 'foo/qux/baz'
console.log(toFilePath([1, 2, 3], 'foo', 4, 'bar')); // => '1/2/3/foo/4/bar'
console.log(toFilePath(null, true)); // => 'null/true'
console.log(toFilePath(1, 2, 3)); // => '1/2/3'


back to top

See Also

Some of these projects are used here or were inspiration for this one, others are just related. So, thanks for your existance!
value if (any of the) passed value(s) exists… more
| homepage passed value(s) exists in array, or optionally an index') alternative to JavaScript's native array map. | homepage with strictness and correctness in mind. Also… more | homepage exists in an array. Faster… more | homepage (IPv4 and IPv6) using micromatch - glob… more | homepage using micromatch - glob patterns, RegExp, string or array of globs. If match returns the IP, otherwise null.') object path from a list or array of… more | homepage
back to top

Contributing

Guides and Community

Please read the Contributing Guide
contributing-url and Code of Conductcodeofconduct-url documents for advices.
For bug reports and feature requests, please join our communitycommunity-url forum and open a thread there with prefixing the title of the thread with the name of the project if there's no separate channel for it.
Consider reading the Support and Release Policy guide if you are interested in what are the supported Node.js versions and how we proceed. In short, we support latest two even-numbered Node.js release lines.

Support the project

Become a Partner or Sponsor?kofi-url :dollar: Check the OpenSource Commision (tier). :tada: You can get your company logo, link & name on this file. It's also rendered on package's page in npmjs.comnpmv-url and yarnpkg.com sites too! :rocket:
Not financial support? Okey! Pull requests, stars and all kind of contributions are always welcome. :sparkles:

Contributors

This project follows the all-contributors specification. Contributions of any kind are welcome!
Thanks goes to these wonderful people (emoji key), consider showing your support to them:
<td align="center"><a href="https://tunnckoCore.com"><img src="https://avatars3.githubusercontent.com/u/5038030?v=4" width="100px;" alt=""/><br /><sub><b>Charlike Mike Reagent</b></sub></a><br /><a href="#infra-tunnckoCore" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/node-formidable/node-formidable/commits?author=tunnckoCore" title="Code">💻</a> <a href="https://github.com/node-formidable/node-formidable/commits?author=tunnckoCore" title="Documentation">📖</a> <a href="#ideas-tunnckoCore" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-tunnckoCore" title="Maintenance">🚧</a> <a href="https://github.com/node-formidable/node-formidable/commits?author=tunnckoCore" title="Tests">⚠️</a></td>



back to top

License

Copyright (c) 2016-present, Charlike Mike Reagent
<opensource@tunnckocore.com> & contributors.
Released under the MPL-2.0 Licenselicense-url.