Guest User

Untitled

a guest
Apr 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function checkAssembly(row, emit) {
  2. emit({ b: WebAssembly != undefined });
  3. }
  4. bigquery.defineFunction(
  5. 'checkAssembly',
  6. ['x'],
  7. [{ 'name': 'b', 'type': 'boolean' }],
  8. checkAssembly
  9. );
Add Comment
Please, Sign In to add comment