Skip to content

Instantly share code, notes, and snippets.

// 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