UNPKG
@eluvio/elv-utils-js
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.0
Utilities for the Eluvio Content Fabric
github.com/eluv-io/elv-utils-js
eluv-io/elv-utils-js
@eluvio/elv-utils-js
/
lib
/
concerns
/
args
/
ArgForced.js
22 lines
(18 loc)
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const
{
NewOpt
} =
require
(
'../../options'
)
const
blueprint = {
name
:
'ArgForced'
,
options
: [
NewOpt
(
'forced'
, {
descTemplate
:
'Subtitles are forced'
,
type
:
'boolean'
}) ] }
const
New
= (
) => {
// instance interface
return
{} }
module
.
exports
= { blueprint,
New
}