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
| 'use strict'; | |
| is = { | |
| Array(input) { | |
| return Array.isArray(input); | |
| }, | |
| Object(input) { | |
| return ('object' === typeof input && input.constructor == Object && input !== null); | |
| }, | |
| Function(input) { |
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 data = JSON.parse(responseBody); | |
| tests["Status code is 200"] = responseCode.code === 200; | |
| tests["Response time is less than 1000ms"] = responseTime < 1000; | |
| tests["Response Content-Type is JSON"] = postman.getResponseHeader("Content-Type") === "application/json" | |
| tests["Response has a success value"] = data.hasOwnProperty("success"); |
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
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress | |
| # Bare Minimum Git | |
| # http://ironco.de/bare-minimum-git/ | |
| # ver 20150227 | |
| # | |
| # This file is tailored for a WordPress project | |
| # using the default directory structure | |
| # | |
| # This file specifies intentionally untracked files to ignore |
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": "Afghanistan", "code": "AF"}, | |
| {"name": "Åland Islands", "code": "AX"}, | |
| {"name": "Albania", "code": "AL"}, | |
| {"name": "Algeria", "code": "DZ"}, | |
| {"name": "American Samoa", "code": "AS"}, | |
| {"name": "AndorrA", "code": "AD"}, | |
| {"name": "Angola", "code": "AO"}, | |
| {"name": "Anguilla", "code": "AI"}, | |
| {"name": "Antarctica", "code": "AQ"}, |
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
| @mixin calc($property, $expression) { | |
| #{$property}: -webkit-calc(#{$expression}); | |
| #{$property}: -moz-calc(#{$expression}); | |
| #{$property}: -ms-calc(#{$expression}); | |
| #{$property}: -o-calc(#{$expression}); | |
| #{$property}: calc(#{$expression}); | |
| } |
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
| window.LIB = window.LIB || {}; | |
| LIB = function(){ | |
| // Settings | |
| var lib = this, | |
| defaults = { | |
| element: $(), | |
| // Events |
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
| wp-admin/ | |
| wp-content/plugins/ | |
| wp-content/themes/twentyeleven/ | |
| wp-content/themes/twentyten/ | |
| wp-includes/ | |
| readme.html | |
| index.php | |
| wp-activate.php | |
| wp-app.php | |
| wp-blog-header.php |