All files\s*\|\s*([0-9.]+)
  
    
      This file contains hidden or 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
    
  
  
    
  | { | |
| "name": "demo-project", | |
| "version": "0.0.3", | |
| "husky": { | |
| "hooks": { | |
| "pre-commit": "npm --no-git-tag-version version patch && sh updateSonarProps.sh && git add ." | |
| } | |
| } | |
| } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | const Redis = require('redis'); | |
| const redis = new Proxy(Redis.createClient({ | |
| port: config.memoryPort, | |
| host: config.memoryHost | |
| }), { | |
| get(redis, name) { | |
| let target = redis[name]; | |
| if ('function' !== typeof target) { | |
| return target; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | /** | |
| * Module dependencies | |
| */ | |
| var express = require('express'); | |
| var fs = require('fs'); | |
| var mongoose = require('mongoose'); | |
| var Schema = mongoose.Schema; | |
| // img path | 
  
    
      This file contains hidden or 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
    
  
  
    
  | function createStore (reducers) { | |
| var state = reducers() | |
| const store = { | |
| dispatch: (action) => { | |
| state = reducers(state, action) | |
| }, | |
| getState: () => { | |
| return state | |
| } | |
| } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | // Originally generated from... | |
| // 1) sql-bubble.txt (from sqlite.org) | |
| // 2) ./sql-bubble.rb sql-bubble.txt > tmp/rules.rb | |
| // 3) ./bubble-to-pegjs.rb tmp/rules.rb bubble-to-pegjs_ex.rb > tmp/sql.pegjs | |
| // | |
| // Then, manually edited for pegjs suitability. | |
| // | |
| // Rules with indentation or with comments have manual edits. | |
| // | |
| start = value | 
  
    
      This file contains hidden or 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
    
  
  
    
  | $ cd /usr/local | |
| $ git checkout b64d9b9c431642a7dd8d85c8de5a530f2c79d924 Library/Formula/node.rb | |
| $ brew unlink node | |
| $ brew install node | |
| $ npm install -g npm@latest | 
  
    
      This file contains hidden or 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
    
  
  
    
  | var Q = require("q"); | |
| var phantom=require('node-phantom'); | |
| function promisify(nodeAsyncFn, context, modifier) { | |
| return function() { | |
| var args = args = Array.prototype.slice.call(arguments); | |
| var defer = Q.defer() | |
| args.push(function(err, val) { | 
  
    
      This file contains hidden or 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
    
  
  
    
  | /** | |
| * Module dependencies | |
| */ | |
| var express = require('express'); | |
| var fs = require('fs'); | |
| var mongoose = require('mongoose'); | |
| var Schema = mongoose.Schema; | |
| // img path | 
NewerOlder