This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Module = { | |
// ... | |
preInit: [ | |
function() { | |
// create LSFS and mount 'data' local storage item into '/data' directory | |
FS.mkdir('/data'); // for old versions use: FS.createFolder(FS.root, 'data', true, true); | |
FS.mount(LSFS(), { key: 'data' }, '/data'); | |
} | |
] | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var webrtc = require('..'); | |
var RTCPeerConnection = webrtc.RTCPeerConnection; | |
var RTCSessionDescription = webrtc.RTCSessionDescription; | |
var RTCIceCandidate = webrtc.RTCIceCandidate; | |
var total = 0; | |
var limit = parseInt(process.argv[process.argv.length - 1]) || 1; | |
for (var i = 0; i < limit; i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
file_get_contents_utf_ansi($filename, $defAnsiEnc = 'Windows-1251') | |
{ | |
$buf = file_get_contents($filename); | |
if (substr($buf, 0, 3) == "\xEF\xBB\xBF") return substr($buf,3); | |
else if (substr($buf, 0, 2) == "\xFE\xFF") return mb_convert_encoding(substr($buf, 2), 'UTF-8', 'UTF-16BE'); | |
else if (substr($buf, 0, 2) == "\xFF\xFE") return mb_convert_encoding(substr($buf, 2), 'UTF-8', 'UTF-16LE'); | |
else if (substr($buf, 0, 4) == "\x00\x00\xFE\xFF") return mb_convert_encoding(substr($buf, 4), 'UTF-8', 'UTF-32BE'); |