Skip to content

Commit

Permalink
Arrange require statements according to project style
Browse files Browse the repository at this point in the history
  • Loading branch information
majgis committed Aug 1, 2016
1 parent 27a33b6 commit 736161e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/flash.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
// System Objects
// ...

// Third Party Dependencies
var async = require('async');
var PAGE = 256;

// Internal
var log = require('./log');

// Constants
var PAGE = 256;
var CHIP_ID = new Buffer([0x01, 0x02, 0x19]);

function address(addr) {
Expand Down
7 changes: 7 additions & 0 deletions lib/tessel/restore.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// System Objects
// ...

// Third Party Dependencies
// ...

// Internal
var Tessel = require('./tessel');
var update = require('../update-fetch');
var log = require('../log');
Expand Down

0 comments on commit 736161e

Please sign in to comment.