fix(config): fix config set function so that it has arguments defined

fixes #5696
This commit is contained in:
Brandy Carney
2016-03-04 12:22:19 -05:00
parent 703fe16154
commit 894824e657

View File

@ -251,8 +251,7 @@ export class Config {
* @param {string} [key] - The key used to look up the value at a later point in time. * @param {string} [key] - The key used to look up the value at a later point in time.
* @param {string} [value] - The config value being stored. * @param {string} [value] - The config value being stored.
*/ */
set() { set(...args: any[]) {
const args = arguments;
const arg0 = args[0]; const arg0 = args[0];
const arg1 = args[1]; const arg1 = args[1];