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} [value] - The config value being stored.
*/
set() {
const args = arguments;
set(...args: any[]) {
const arg0 = args[0];
const arg1 = args[1];