Interactive version: http://bl.ocks.org/4545199
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
| /** | |
| * Find differences between two tables | |
| * | |
| * This script excludes the created_at and updated_at tables | |
| * | |
| * INSTRUCTIONS: | |
| * 1. Import the source data | |
| * 2. Create table copies of each table to compare. For example given a 'prices' table, you | |
| * would have a 'prices' table and a 'prices_copy' table | |
| * 3. Run the action that changes the data. |
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
| /** | |
| * Adds supports for CSS grids in IE-11. | |
| * | |
| * Unlike Prefixer's grid: autoplace property, this makes possible having an | |
| * unknown number of rows. | |
| * | |
| * Note that to keep file size down, only 16 children | |
| * are displayed in grids. If you need to increase this, | |
| * change the $max-children value. This is a non-purgeable property. | |
| * |