UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

15 lines (12 loc) 309 B
'use strict'; /** * Logs out a message if there is no format option set. * @param {String} message - Message to log. */ function error(message) { if (!/\=-(f|-format)=/.test(process.argv.join('='))) { // eslint-disable-next-line no-console console.error(message); } } module.exports = error;