Remove unnecessary comments at start of files
This commit is contained in:
parent
f3efa83643
commit
0b48851885
|
@ -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";
|
||||
|
||||
var Basestar = require("./basestar"),
|
||||
|
|
|
@ -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";
|
||||
|
||||
var EventEmitter = require("events").EventEmitter;
|
||||
|
|
|
@ -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";
|
||||
|
||||
module.exports = {
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Async = require("async");
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Basestar = require("./basestar"),
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Registry = require("./registry"),
|
||||
|
|
|
@ -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 */
|
||||
|
||||
"use strict";
|
||||
|
|
|
@ -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";
|
||||
|
||||
module.exports = {
|
||||
|
|
|
@ -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";
|
||||
|
||||
var levels = ["debug", "info", "warn", "error", "fatal"];
|
||||
|
|
|
@ -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";
|
||||
|
||||
var getArgs = function(args) {
|
||||
|
|
|
@ -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";
|
||||
|
||||
// The NullLogger is designed for cases where you want absolutely nothing to
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Logger = require("./logger"),
|
||||
|
|
|
@ -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";
|
||||
|
||||
var initializer = require("./initializer"),
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Adaptor = require("../adaptor"),
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Driver = require("../driver"),
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Adaptor = require("../adaptor"),
|
||||
|
|
|
@ -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";
|
||||
|
||||
var Driver = require("../driver"),
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
/*
|
||||
* Cylon - Utils
|
||||
* cylonjs.com
|
||||
*
|
||||
* Copyright (c) 2013-2015 The Hybrid Group
|
||||
* Licensed under the Apache 2.0 license.
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
var _ = require("./utils/helpers");
|
||||
|
|
|
@ -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";
|
||||
|
||||
var __slice = Array.prototype.slice;
|
||||
|
|
|
@ -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 */
|
||||
|
||||
"use strict";
|
||||
|
|
Loading…
Reference in New Issue