├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── spec ├── constants.spec.js ├── fromSeconds.spec.js ├── index.js └── toSeconds.spec.js ├── src ├── constants.js ├── fromSeconds-bin.js ├── fromSeconds.js ├── index.js ├── toSeconds-bin.js └── toSeconds.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.DS_Store 3 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | spec/ 2 | src/ 3 | .* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/package.json -------------------------------------------------------------------------------- /spec/constants.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/spec/constants.spec.js -------------------------------------------------------------------------------- /spec/fromSeconds.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/spec/fromSeconds.spec.js -------------------------------------------------------------------------------- /spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/spec/index.js -------------------------------------------------------------------------------- /spec/toSeconds.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/spec/toSeconds.spec.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | export default { 4 | framerate: 25 5 | }; 6 | -------------------------------------------------------------------------------- /src/fromSeconds-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/src/fromSeconds-bin.js -------------------------------------------------------------------------------- /src/fromSeconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/src/fromSeconds.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/src/index.js -------------------------------------------------------------------------------- /src/toSeconds-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/src/toSeconds-bin.js -------------------------------------------------------------------------------- /src/toSeconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/src/toSeconds.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synchronized-TV/node-timecodes/HEAD/yarn.lock --------------------------------------------------------------------------------