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
import fs from 'fs'; | |
import { parse } from 'csv-parse'; | |
import path from 'path'; | |
import os from 'node:os'; | |
const CLONE_HERO_SONGS_FOLDER = path.join(os.homedir(), 'Clone Hero', 'Songs'); | |
const CHORUS_DUMP = new URL('Chorus_Dump-export_feb_15_2023.csv', import.meta.url).pathname; | |
const SPOTIFY_DATA_DUMP_FOLDER = new URL('SpotifyData-Aug-26', import.meta.url).pathname; | |
async function run() { |
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
const Codegen = require('react-native-codegen'); | |
const FlowParser = require('react-native-codegen-flow-parser'); | |
const FabricObjcGenerator = require('react-native-codegen-fabric-objc-generator'); | |
const ViewConfigGenerator = require('react-native-codegen-viewconfig-generator'); | |
const MarkdownDocumentationGenerator = require('react-native-codegen-markdown-generator'); | |
Codegen({ | |
schema: new FlowParser({ | |
files: ["src/*NativeComponent.js", "src/*NativeModule.js"], | |
otherConfig: true |
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
[alias] | |
cleanup = "!git branch --merged | grep -v '\\*\\|master' | xargs -n 1 git branch -d && git remote prune origin" | |
cleanup-remote = "!git branch -r --merged | grep origin | grep -v '>' | grep -v master | xargs -L1 | cut -d"/" -f2- | xargs git push origin --delete" | |
old-branches = "!git for-each-ref --sort=committerdate --format='%1B[1;34m %(authordate:relative) %1B[m %(refname:short) %1B[1;32m%(authorname)%1B[m' refs/remotes" |
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
var proxyquire = require('proxyquire'); | |
describe('utils#getString', function() { | |
it('should print helper.msg', function() { | |
var HelperStub = { | |
msg: 'stub msg' | |
}; | |
var utils = proxyquire('../server/utils', { | |
'./helper': HelperStub |
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
var helper1 = require('./helper'); | |
var Utils = { | |
getString: function() { | |
return helper1.msg; | |
} | |
}; | |
module.exports = Utils; |
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
var Helper = { | |
msg: 'from helper' | |
}; | |
module.exports = Helper; |
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
var privateState = require('private-state'); | |
var sinon = require('sinon'); | |
var utils = require('./utils'); | |
describe('utils#getDateString', function() { | |
it('should print value from formatString', function() { | |
var stub = sinon.stub().returns('today'); | |
privateState.setFunctionForTesting(utils, 'formatString', stub); | |
var now = new Date(2015, 1, 1); |
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
var privateState = require('privatestate'); | |
function formatString(date) { | |
return date.toDateString(); | |
} | |
var Utils = { | |
getDateString: function(date) { | |
return 'today is ' + formatString(date); | |
} |
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'; | |
var privateState = require('privatestate'); | |
function nameHelper(first, last) { | |
return first + ' ' + last; | |
} | |
function Person(first, last) { | |
this.first = first; |
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
var privateState = require('privatestate'); | |
var utils = require('./utils'); | |
describe('utils#add', function() { | |
it('should add two numbers', function() { | |
var add = privateState.getForTesting(utils, 'add'); | |
var actual = add(2, 4); | |
assert.equal(actual, 6); | |
}); | |
}); |
NewerOlder