Skip to content

Instantly share code, notes, and snippets.

@isakb
isakb / code.coffee
Created June 7, 2014 21:05
Download JavaScript array as Excel CSV for any version of Excel
# See http://jsfiddle.net/isak_b/hp6fj/ for live demo.
asUtf16 = (str) ->
buffer = new ArrayBuffer(str.length * 2)
bufferView = new Uint16Array(buffer)
bufferView[0] = 0xfeff
for i in [0..str.length]
val = str.charCodeAt(i)
bufferView[i + 1] = val
bufferView
@ebidel
ebidel / Web Components Resources.md
Last active October 12, 2024 17:10
List of resources related to Web Components