Giter Site home page Giter Site logo

Support defaults about arg HOT 8 CLOSED

vercel avatar vercel commented on May 4, 2024
Support defaults

from arg.

Comments (8)

Qix- avatar Qix- commented on May 4, 2024 1

@matthewmueller Here's an example for a utility I am writing at the moment:

const args = arg({
	'--help': Boolean,
	'-h': '--help',

	'--out-dir': String,
	'-o': '--out-dir',

	'--numeric-bold': Boolean,
	'-B': '--numeric-bold',

	'--bold': Number,
	'-b': '--bold',

	'--normal': Number,
	'-N': '--normal',

	'--path': String,
	'-p': '--path',

	'--out-name': String,
	'-O': '--out-name'
});

const {
	'--bold': boldWeight = 700,
	'--normal': normalWeight = 400,
	'--out-name': outputName = 'fonts'
} = args;

from arg.

rauschma avatar rauschma commented on May 4, 2024 1

@Qix- Suggestion: add this example to the project’s readme.

from arg.

rauchg avatar rauchg commented on May 4, 2024

Wouldn't destructuring defaults be a better option here? They don't work for null, but if we set undefined that could work

from arg.

rauchg avatar rauchg commented on May 4, 2024

If so, we should consider doing a major bump to get rid of - and -- in the spec perhaps

from arg.

matthewmueller avatar matthewmueller commented on May 4, 2024

Wouldn't destructuring defaults be a better option here?

How would this look?

If so, we should consider doing a major bump to get rid of - and -- in the spec perhaps

I quite like its explicitness but I do forget they're needed every time haha.

Another option could be supplying a function. I just noticed the arg.flag(fn). It seems like that could be the solution.

from arg.

Qix- avatar Qix- commented on May 4, 2024

I'm πŸ‘Ž on this. I think this is very clearly getting into scope creep territory.

from arg.

matthewmueller avatar matthewmueller commented on May 4, 2024

Sounds good. It's easy enough to do outside of this library.

from arg.

matthewmueller avatar matthewmueller commented on May 4, 2024

Looks great, thanks for sharing! Destructuring, aliasing, and defaults in one call – JS is getting so crazy 😬

from arg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.