//////////////////////////////////// // // A companion to oK which bridges // the gap between k-values and // native JavaScript types. // // John Earnest // //////////////////////////////////// "use strict"; function tok(v) { if (typeof v == 'number') { return { t:0, v:v }; } if (typeof v == 'string') { var r = []; for(var z=0;z