6 matches across 1 files for func main lang:JavaScript path:examples/classic/firebase/app.js lang:JavaScript
snippet_mode: grep · sorted by relevance
examples/classic/firebase/app.js JAVASCRIPT 6 matches · showing 5 view file →
4var config = {
5 apiKey: "AIzaSyAi_yuJciPXLFr_PYPeU3eTvtXf8jbJ8zw",
6 authDomain: "vue-demo-537e6.firebaseapp.com",
7 databaseURL: "https://vue-demo-537e6.firebaseio.com"
8}
· · ·
29 // computed property for form validation state
30 computed: {
31 validation: function () {
32 return {
33 name: !!this.newUser.name.trim(),
· · ·
35 }
36 },
37 isValid: function () {
38 var validation = this.validation
39 return Object.keys(validation).every(function (key) {
· · ·
39 return Object.keys(validation).every(function (key) {
40 return validation[key]
41 })
· · ·
44 // methods
45 methods: {
46 addUser: function () {
47 if (this.isValid) {
48 usersRef.push(this.newUser)
+ 1 more matches in this file
Search syntax
auth loginboth terms (AND is implicit)
auth OR logineither term
NOT path:vendorexclude matches
"exact phrase"quoted exact match
/func\s+Test/regex
handler~1fuzzy (Levenshtein 1)
file:*_test.gofilename glob
path:pkg/auth/**full path glob
lang:golanguage filter

Search any public repo from your terminal

This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.