Skip to content

Commit 1c80add

Browse files
committed
remove separate definition of type secret as any to be used as fallback
1 parent 0ccd9cb commit 1c80add

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

lib/collection/variable.js

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -454,28 +454,6 @@ _.assign(Variable, /** @lends Variable */ {
454454
}
455455
},
456456

457-
/**
458-
* A "secret" type variable indicates the value should be resolved from an external source
459-
* using the `source` property.
460-
*/
461-
secret: {
462-
/**
463-
* @param {*} val -
464-
* @returns {*}
465-
*/
466-
in (val) {
467-
return val; // pass through
468-
},
469-
470-
/**
471-
* @param {*} val -
472-
* @returns {*}
473-
*/
474-
out (val) {
475-
return val; // pass through
476-
}
477-
},
478-
479457
/**
480458
* Free-form type of a value. This is the default for any variable, unless specified otherwise. It ensures that
481459
* the variable can store data in any type and no conversion is done while using {@link Variable#get}.

0 commit comments

Comments
 (0)