Shall I compare thee to a summer’s day?
- Thou art more lovely and more temperate.
+ Thou code more lovely and more temperate.
- Rough winds do shake the darling buds of May,
+ Rough diffs do shake the reviews to dismay,
- And summer’s lease hath all too short a date.
+ And day’s release hath all too short a date.
- Sometime too hot the eye of heaven shines,
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 ($) { | |
| $.fn.timeInput = function () { | |
| //do something | |
| return this; | |
| }; | |
| })(jQuery); |
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
| /****************************************************** | |
| * PATTERN LAB NODE | |
| * EDITION-NODE-GULP | |
| * The gulp wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets. | |
| ******************************************************/ | |
| var gulp = require('gulp'), | |
| path = require('path'), | |
| browserSync = require('browser-sync').create(), | |
| sass = require('gulp-sass'), | |
| argv = require('minimist')(process.argv.slice(2)); |
OlderNewer