Remove unnecessary comments at start of files

This commit is contained in:
Andrew Stewart 2015-06-22 09:16:43 -07:00
parent f3efa83643
commit 0b48851885
20 changed files with 0 additions and 160 deletions

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Adaptor base class
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Basestar = require("./basestar"), var Basestar = require("./basestar"),

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Basestar base class
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var EventEmitter = require("events").EventEmitter; var EventEmitter = require("events").EventEmitter;

View File

@ -1,11 +1,3 @@
/*
* Cylon.js - Internal Configuration
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
module.exports = { module.exports = {

View File

@ -1,11 +1,3 @@
/*
* Cylon.js - Master Control Program
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Async = require("async"); var Async = require("async");

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Driver base class
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Basestar = require("./basestar"), var Basestar = require("./basestar"),

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Adaptor/Driver initializer
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Registry = require("./registry"), var Registry = require("./registry"),

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - GPIO Digital Pin class
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
/* eslint no-sync: 0 */ /* eslint no-sync: 0 */
"use strict"; "use strict";

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - I/O Utils
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
module.exports = { module.exports = {

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Logger
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var levels = ["debug", "info", "warn", "error", "fatal"]; var levels = ["debug", "info", "warn", "error", "fatal"];

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Basic Logger
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var getArgs = function(args) { var getArgs = function(args) {

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Null Logger
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
// The NullLogger is designed for cases where you want absolutely nothing to // The NullLogger is designed for cases where you want absolutely nothing to

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Module Registry
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Logger = require("./logger"), var Logger = require("./logger"),

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Robot class
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var initializer = require("./initializer"), var initializer = require("./initializer"),

View File

@ -1,11 +1,3 @@
/*
* Cylon.js - Loopback adaptor
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Adaptor = require("../adaptor"), var Adaptor = require("../adaptor"),

View File

@ -1,11 +1,3 @@
/*
* Cylon.js - Ping driver
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Driver = require("../driver"), var Driver = require("../driver"),

View File

@ -1,11 +1,3 @@
/*
* Cylon.js - Test Adaptor
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Adaptor = require("../adaptor"), var Adaptor = require("../adaptor"),

View File

@ -1,11 +1,3 @@
/*
* Cylon.js - Test Driver
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var Driver = require("../driver"), var Driver = require("../driver"),

View File

@ -1,11 +1,3 @@
/*
* Cylon - Utils
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var _ = require("./utils/helpers"); var _ = require("./utils/helpers");

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Helper Utilities
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var __slice = Array.prototype.slice; var __slice = Array.prototype.slice;

View File

@ -1,11 +1,3 @@
/**
* Cylon.js - Monkey Patches
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
/* eslint no-extend-native: 0 key-spacing: 0 */ /* eslint no-extend-native: 0 key-spacing: 0 */
"use strict"; "use strict";