layout | title | description | tags | ||
---|---|---|---|---|---|
default |
SQL Style Guide |
A guide to writing clean, clear, and consistent SQL. |
|
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
'use strict'; | |
// Dependencies | |
// we can remove a dependency by using the vision | |
// package directly | |
const vision = require('@google-cloud/vision')({ | |
projectId: 'sara-bigquery', | |
keyfileName: 'keyfile.json' | |
}); | |
const fs = require('fs'); |