diff --git a/packages/pg/lib/client.js b/packages/pg/lib/client.js index bc91924e..72973c44 100644 --- a/packages/pg/lib/client.js +++ b/packages/pg/lib/client.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ var EventEmitter = require('events').EventEmitter var util = require('util') diff --git a/packages/pg/lib/connection-parameters.js b/packages/pg/lib/connection-parameters.js index eae798d5..7f39cfae 100644 --- a/packages/pg/lib/connection-parameters.js +++ b/packages/pg/lib/connection-parameters.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ var dns = require('dns') diff --git a/packages/pg/lib/connection.js b/packages/pg/lib/connection.js index 2142a401..1487dce8 100644 --- a/packages/pg/lib/connection.js +++ b/packages/pg/lib/connection.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ var net = require('net') var EventEmitter = require('events').EventEmitter diff --git a/packages/pg/lib/defaults.js b/packages/pg/lib/defaults.js index e28794db..9384e01c 100644 --- a/packages/pg/lib/defaults.js +++ b/packages/pg/lib/defaults.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ module.exports = { // database host. defaults to localhost diff --git a/packages/pg/lib/index.js b/packages/pg/lib/index.js index 975175cd..fa658055 100644 --- a/packages/pg/lib/index.js +++ b/packages/pg/lib/index.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ var Client = require('./client') var defaults = require('./defaults') diff --git a/packages/pg/lib/native/client.js b/packages/pg/lib/native/client.js index f4554615..b2cc4347 100644 --- a/packages/pg/lib/native/client.js +++ b/packages/pg/lib/native/client.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ // eslint-disable-next-line var Native = require('pg-native') diff --git a/packages/pg/lib/native/query.js b/packages/pg/lib/native/query.js index de443489..d06db43c 100644 --- a/packages/pg/lib/native/query.js +++ b/packages/pg/lib/native/query.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ var EventEmitter = require('events').EventEmitter var util = require('util') diff --git a/packages/pg/lib/query.js b/packages/pg/lib/query.js index 37098ac8..9cd0dab1 100644 --- a/packages/pg/lib/query.js +++ b/packages/pg/lib/query.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ const { EventEmitter } = require('events') diff --git a/packages/pg/lib/result.js b/packages/pg/lib/result.js index 5e895736..e1f6bea9 100644 --- a/packages/pg/lib/result.js +++ b/packages/pg/lib/result.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ var types = require('pg-types') diff --git a/packages/pg/lib/type-overrides.js b/packages/pg/lib/type-overrides.js index 63bfc83e..66693482 100644 --- a/packages/pg/lib/type-overrides.js +++ b/packages/pg/lib/type-overrides.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ var types = require('pg-types') diff --git a/packages/pg/lib/utils.js b/packages/pg/lib/utils.js index f6da81f4..b3b4ff4c 100644 --- a/packages/pg/lib/utils.js +++ b/packages/pg/lib/utils.js @@ -1,11 +1,4 @@ 'use strict' -/** - * Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com) - * All rights reserved. - * - * This source code is licensed under the MIT license found in the - * README.md file in the root directory of this source tree. - */ const crypto = require('crypto')