Skip to content

Commit

Permalink
fix(config): fix config set function so that it has arguments defined
Browse files Browse the repository at this point in the history
fixes #5696
  • Loading branch information
brandyscarney committed Mar 4, 2016
1 parent 703fe16 commit 894824e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ionic/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down

0 comments on commit 894824e

Please sign in to comment.