Add a remote called upstream (name is a convention):
git remote add upstream https://github.com/<original_owner>/<original_repository>.git
git remote -vFetch the branches and their respective commits from the upstream repository:
MIT:
Harvard:
eBooks:
Info.plist.View controller-based status bar appearance and value NO if not present.Status bar is initially hidden with value YES if not present.| 'use strict'; | |
| var React = require('react'); | |
| var ReactClass = React.createClass({ | |
| displayName: 'ReactClass', | |
| // https://facebook.github.io/react/docs/reusable-components.html#mixins | |
| mixins: [], |
Node.js run module with a different this context.
Sources:
// index.js
var vm = require('vm');| 'use strict'; | |
| /** | |
| * Generate an alphanumeric ID based on Date. | |
| * @return {String} - The alphanumeric ID. | |
| */ | |
| function dateIdGenerator() { | |
| // `valueOf` returns the milliseconds since midnight 01 January, 1970 UTC | |
| // then convert to Base36 | |
| return new Date().valueOf().toString(36); |
| 'use strict'; | |
| /** | |
| * Map an array. | |
| * | |
| * @param {Array} arr - The array to be mapped. | |
| * @param {Function} fun - The map function. | |
| * @return {Array} - The mapped array. | |
| */ | |
| function map(arr, fun) { |