Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcavaliere/6f83d0afadf551007967fdc56a9cc0df to your computer and use it in GitHub Desktop.
Save mcavaliere/6f83d0afadf551007967fdc56a9cc0df to your computer and use it in GitHub Desktop.
// Old
if ( ! Utils.configSettingExists( config, 'foo' ) ) {
Utils.printConfigFormatInstructions();
}
// New
if ( ! Config.configSettingExists( 'foo' ) ) {
Config.printConfigFormatInstructions();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment