@react-native-tvos/config-tv
Version:
Config plugin to reconfigure native directories for Apple TV and Android TV development if needed
11 lines (10 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.verboseLog = verboseLog;
const debug = require("debug")("expo:react-native-tvos:config-tv");
function verboseLog(message, options) {
const tokens = [message];
options?.property && tokens.unshift(options?.property);
options?.platform && tokens.unshift(options?.platform);
debug(tokens.join(": "));
}