var _js_primitives; (function(exports) { 'use strict'; // Function printString: (String) → void function printString(string) { if (typeof dartPrint == "function") { dartPrint(string); return; } if (typeof console == "object" && typeof console.log != "undefined") { console.log(string); return; } if (typeof window == "object") { return; } if (typeof print == "function") { print(string); return; } throw "Unable to print message: " + String(string); } // Exports: exports.printString = printString; })(_js_primitives || (_js_primitives = {}));