Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit f8adeeb

Browse files
author
TATSUNO Yasuhiro
authored
Merge pull request #8 from exoego/no-author
Remove author anotation
2 parents 2d1c5b9 + 349bd78 commit f8adeeb

File tree

154 files changed

+0
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+0
-227
lines changed

app/common/src/main/scala/io/scalajs/nodejs/Assert.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import scala.scalajs.js.annotation.JSImport
1212
*
1313
* The API for the assert module is Locked. This means that there will be no additions or changes to any of the
1414
* methods implemented and exposed by the module.
15-
1615
*/
1716
@js.native
1817
trait Assert extends IEventEmitter {
@@ -134,7 +133,6 @@ trait Assert extends IEventEmitter {
134133

135134
/**
136135
* Assert Singleton
137-
138136
*/
139137
@js.native
140138
@JSImport("assert", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/Console.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import scala.scalajs.js.annotation.JSImport
1717
* used without calling require('console').</li>
1818
* </ul>
1919
* @see https://nodejs.org/dist/latest-v8.x/docs/api/console.html
20-
2120
*/
2221
@js.native
2322
@JSImport("console", "Console")
@@ -150,7 +149,6 @@ class Console(stdout: Writable, stderr: Writable = js.native) extends js.Object
150149
* inspecting large complicated objects. Defaults to 2. To make it recurse indefinitely, pass null.
151150
* @param colors if true, then the output will be styled with ANSI color codes. Defaults to false. Colors are customizable;
152151
* see customizing util.inspect() colors.
153-
154152
*/
155153
class ConsoleDirOptions(var showHidden: js.UndefOr[Boolean] = js.undefined,
156154
var depth: js.UndefOr[Int] = js.undefined,

app/common/src/main/scala/io/scalajs/nodejs/Error.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import scala.scalajs.js.annotation.{JSGlobal, JSImport}
1010
* Stack traces are dependent on V8's stack trace API. Stack traces extend only to either (a) the
1111
* beginning of synchronous code execution, or (b) the number of frames given by the property
1212
* Error.stackTraceLimit, whichever is smaller.
13-
1413
*/
1514
@js.native
1615
@JSImport("errors", "Error")
@@ -33,7 +32,6 @@ class Error(message0: String = js.native) extends js.Object {
3332

3433
/**
3534
* Error Singleton
36-
3735
*/
3836
@js.native
3937
@JSGlobal

app/common/src/main/scala/io/scalajs/nodejs/Global.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import scala.scalajs.js
88
* In browsers, the top-level scope is the global scope. That means that in browsers if you're in the global scope var
99
* something will define a global variable. In Node.js this is different. The top-level scope is not the global scope;
1010
* var something inside an Node.js module will be local to that module.
11-
1211
*/
1312
@js.native
1413
trait Global extends js.Object {

app/common/src/main/scala/io/scalajs/nodejs/Module.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import scala.scalajs.js.annotation.JSGlobal
77
* In each module, the module free variable is a reference to the object representing the current module.
88
* For convenience, module.exports is also accessible via the exports module-global. module isn't actually
99
* a global but rather local to each module.
10-
1110
* @see [[https://nodejs.org/api/modules.html#modules_the_module_object]]
1211
*/
1312
@js.native
@@ -64,7 +63,6 @@ trait Module extends js.Object {
6463

6564
/**
6665
* Module Companion
67-
6866
*/
6967
object Module {
7068

app/common/src/main/scala/io/scalajs/nodejs/Process.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import scala.scalajs.js.UndefOr
1111

1212
/**
1313
* The process object is a global object and can be accessed from anywhere. It is an instance of EventEmitter.
14-
1514
*/
1615
@js.native
1716
trait Process extends IEventEmitter {
@@ -406,7 +405,6 @@ trait Process extends IEventEmitter {
406405

407406
/**
408407
* Process Object Companion
409-
410408
*/
411409
object Process {
412410

app/common/src/main/scala/io/scalajs/nodejs/StringDecoder.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import scala.scalajs.js.annotation.JSImport
99
/**
1010
* To use this module, do require('string_decoder'). StringDecoder decodes a buffer to a string. It is a simple
1111
* interface to [[Buffer.toString()]] but provides additional support for utf8.
12-
1312
*/
1413
@js.native
1514
@JSImport("string_decoder", "StringDecoder")

app/common/src/main/scala/io/scalajs/nodejs/SystemError.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import scala.scalajs.js.|
66

77
/**
88
* System Error
9-
109
*/
1110
@js.native
1211
@JSImport("errors", "SystemError")
@@ -52,7 +51,6 @@ class SystemError(message0: String = js.native) extends Error(message0) {
5251

5352
/**
5453
* System Error Singleton
55-
5654
*/
5755
@js.native
5856
@JSImport("errors", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/buffer/Buffer.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import scala.scalajs.js.|
2020
*
2121
* The Buffer class is a global within Node.js, making it unlikely that one would need to ever use require('buffer').
2222
* @see https://nodejs.org/api/buffer.html
23-
2423
*/
2524
@js.native
2625
@JSImport("buffer", "Buffer")

app/common/src/main/scala/io/scalajs/nodejs/buffer/SlowBuffer.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.scalajs.js.annotation.JSImport
1414
* amount of time, it may be appropriate to create an un-pooled Buffer instance using SlowBuffer then copy
1515
* out the relevant bits.
1616
* @see https://nodejs.org/api/buffer.html#buffer_class_slowbuffer
17-
1817
*/
1918
@deprecated("Use Buffer.allocUnsafeSlow() instead.", since = "6.0.0")
2019
@js.native

app/common/src/main/scala/io/scalajs/nodejs/buffer/package.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import scala.scalajs.js
44

55
/**
66
* buffer package object
7-
87
*/
98
package object buffer {
109

@@ -14,7 +13,6 @@ package object buffer {
1413

1514
/**
1615
* Buffer Extensions
17-
1816
*/
1917
implicit class BufferExtensions(val buffer: Buffer) extends AnyVal {
2018

app/common/src/main/scala/io/scalajs/nodejs/child_process/ForkOptions.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import scala.scalajs.js
1919
* value 'ipc' or an error will be thrown. For instance [0, 1, 2, 'ipc'].
2020
* @param uid <Number> Sets the user identity of the process. (See setuid(2).)
2121
* @param gid <Number> Sets the group identity of the process. (See setgid(2).)
22-
2322
*/
2423
class ForkOptions(val cwd: js.UndefOr[String] = js.undefined,
2524
val env: js.Any = js.undefined,

app/common/src/main/scala/io/scalajs/nodejs/child_process/SpawnOptions.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import scala.scalajs.js.|
1818
* @param shell <Boolean> | <String> If true, runs command inside of a shell.
1919
* Uses '/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be specified as a string.
2020
* The shell should understand the -c switch on UNIX, or /d /s /c on Windows. Defaults to false (no shell).
21-
2221
*/
2322
class SpawnOptions(
2423
val cwd: js.UndefOr[String] = js.undefined,

app/common/src/main/scala/io/scalajs/nodejs/cluster/Address.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import scala.scalajs.js
44

55
/**
66
* Address
7-
87
*/
98
@js.native
109
trait Address extends js.Object {

app/common/src/main/scala/io/scalajs/nodejs/cluster/Cluster.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import scala.scalajs.js.annotation.JSImport
1010
* sometimes want to launch a cluster of Node.js processes to handle the load.
1111
*
1212
* The cluster module allows you to easily create child processes that all share server ports.
13-
1413
*/
1514
@js.native
1615
trait Cluster extends IEventEmitter {
@@ -113,7 +112,6 @@ trait Cluster extends IEventEmitter {
113112

114113
/**
115114
* Cluster Singleton
116-
117115
*/
118116
@js.native
119117
@JSImport("cluster", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/cluster/Worker.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import scala.scalajs.js
88
/**
99
* A Worker object contains all public information and method about a worker. In the master it can be obtained using
1010
* cluster.workers. In a worker it can be obtained using cluster.worker.
11-
1211
*/
1312
@js.native
1413
trait Worker extends IEventEmitter {

app/common/src/main/scala/io/scalajs/nodejs/crypto/Cipher.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.scalajs.js
1414
* </ul>
1515
* The crypto.createCipher() or crypto.createCipheriv() methods are used to create Cipher instances. Cipher objects
1616
* are not to be created directly using the new keyword.
17-
1817
*/
1918
@js.native
2019
trait Cipher extends IDuplex {

app/common/src/main/scala/io/scalajs/nodejs/crypto/Crypto.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import scala.scalajs.js.|
1010
* The crypto module provides cryptographic functionality that includes a set of wrappers
1111
* for OpenSSL's hash, HMAC, cipher, decipher, sign and verify functions.
1212
* @see https://nodejs.org/dist/latest-v7.x/docs/api/crypto.html#crypto_crypto
13-
1413
*/
1514
@js.native
1615
trait Crypto extends js.Object {
@@ -145,7 +144,6 @@ trait Crypto extends js.Object {
145144

146145
/**
147146
* Crypto Singleton
148-
149147
*/
150148
@js.native
151149
@JSImport("crypto", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/crypto/Decipher.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.scalajs.js
1414
*
1515
* The crypto.createDecipher() or crypto.createDecipheriv() methods are used to create Decipher instances.
1616
* Decipher objects are not to be created directly using the new keyword.
17-
1817
*/
1918
@js.native
2019
trait Decipher extends IDuplex {

app/common/src/main/scala/io/scalajs/nodejs/crypto/Hash.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import scala.scalajs.js
1313
* </ul>
1414
* The crypto.createHash() method is used to create Hash instances. Hash objects are not to be created directly using
1515
* the new keyword.
16-
1716
*/
1817
@js.native
1918
trait Hash extends IDuplex {

app/common/src/main/scala/io/scalajs/nodejs/crypto/Hmac.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.scalajs.js
1414
*
1515
* The crypto.createHmac() method is used to create Hmac instances. Hmac objects are not to be created directly using
1616
* the new keyword.
17-
1817
*/
1918
@js.native
2019
trait Hmac extends IDuplex {

app/common/src/main/scala/io/scalajs/nodejs/crypto/Sign.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.scalajs.js
1414
*
1515
* The crypto.createSign() method is used to create Sign instances. Sign objects are not to be created directly using
1616
* the new keyword.
17-
1817
*/
1918
@js.native
2019
trait Sign extends IDuplex {

app/common/src/main/scala/io/scalajs/nodejs/crypto/Verify.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import scala.scalajs.js
1313
* </ul>
1414
* The crypto.createSign() method is used to create Sign instances. Sign objects are not to be created directly using
1515
* the new keyword.
16-
1716
*/
1817
@js.native
1918
trait Verify extends IDuplex {

app/common/src/main/scala/io/scalajs/nodejs/dns/DNS.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import scala.scalajs.js.|
1313
* looking to perform name resolution in the same way that other applications on the same operating system behave
1414
* should use dns.lookup().
1515
* @see https://nodejs.org/api/dns.html
16-
1716
*/
1817
@js.native
1918
trait DNS extends js.Object {
@@ -236,7 +235,6 @@ trait DNS extends js.Object {
236235

237236
/**
238237
* DNS Singleton
239-
240238
*/
241239
@js.native
242240
@JSImport("dns", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/dns/DnsOptions.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import scala.scalajs.js
1111
* ORing their values. See supported getaddrinfo flags for more information on supported flags.</li>
1212
* @param all When true, the callback returns all resolved addresses in an array, otherwise returns a
1313
* single address. Defaults to false.
14-
1514
*/
1615
class DnsOptions(var family: js.UndefOr[Int] = js.undefined,
1716
var hints: js.UndefOr[Int] = js.undefined,

app/common/src/main/scala/io/scalajs/nodejs/dns/MX.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import scala.scalajs.js
1010
* priority: 10
1111
* }
1212
* </pre>
13-
1413
*/
1514
@js.native
1615
trait MX extends js.Object {

app/common/src/main/scala/io/scalajs/nodejs/dns/NAPTR.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.scalajs.js
1414
* preference: 100
1515
* }
1616
* </pre>
17-
1817
*/
1918
@js.native
2019
trait NAPTR extends js.Object {

app/common/src/main/scala/io/scalajs/nodejs/dns/SOA.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import scala.scalajs.js
1515
* minttl: 3600
1616
* }
1717
* </pre>
18-
1918
*/
2019
@js.native
2120
trait SOA extends js.Object {

app/common/src/main/scala/io/scalajs/nodejs/dns/package.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import scala.scalajs.js.|
99

1010
/**
1111
* dns package object
12-
1312
*/
1413
package object dns {
1514

app/common/src/main/scala/io/scalajs/nodejs/events/EventEmitter.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@ import scala.scalajs.js.annotation.JSImport
1010
*
1111
* The EventEmitter class is defined and exposed by the events module
1212
* @see https://nodejs.org/api/events.html
13-
1413
*/
1514
@js.native
1615
@JSImport("events", "EventEmitter")
1716
class EventEmitter extends IEventEmitter
1817

1918
/**
2019
* EventEmitter Interface
21-
2220
*/
2321
@js.native
2422
trait IEventEmitter extends js.Object {
@@ -137,7 +135,6 @@ trait IEventEmitter extends js.Object {
137135

138136
/**
139137
* EventEmitter Singleton
140-
141138
*/
142139
@js.native
143140
@JSImport("events", JSImport.Namespace)

app/common/src/main/scala/io/scalajs/nodejs/fs/FSConstants.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import scala.scalajs.js
55

66
/**
77
* An object containing commonly used constants for file system operations
8-
98
*/
109
@js.native
1110
trait FSConstants extends js.Object {

app/common/src/main/scala/io/scalajs/nodejs/fs/FSWatcher.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import scala.scalajs.js
77

88
/**
99
* fs.FSWatcher - Objects returned from fs.watch() are of this type.
10-
1110
*/
1211
@js.native
1312
trait FSWatcher extends IEventEmitter {
@@ -23,13 +22,11 @@ trait FSWatcher extends IEventEmitter {
2322

2423
/**
2524
* File System Watcher Companion
26-
2725
*/
2826
object FSWatcher {
2927

3028
/**
3129
* File System Watcher Extensions
32-
3330
*/
3431
implicit class FSWatcherExtensions(val watcher: FSWatcher) extends AnyVal {
3532

@@ -67,7 +64,6 @@ object FSWatcher {
6764
* @param persistent Indicates whether the process should continue to run as long as files are being watched (default: true)
6865
* @param recursive Indicates whether all subdirectories should be watched, or only the current directory.
6966
* The applies when a directory is specified, and only on supported platforms (See Caveats) (default: false)
70-
7167
*/
7268
class FSWatcherOptions(val encoding: js.UndefOr[String] = js.undefined,
7369
val persistent: js.UndefOr[Boolean] = js.undefined,

app/common/src/main/scala/io/scalajs/nodejs/fs/ReadStream.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,11 @@ trait ReadStream extends Readable {
4646

4747
/**
4848
* Read Stream Companion
49-
5049
*/
5150
object ReadStream {
5251

5352
/**
5453
* Read Stream Events
55-
5654
*/
5755
implicit class ReadStreamEvents(val stream: ReadStream) extends AnyVal {
5856

@@ -79,7 +77,6 @@ object ReadStream {
7977

8078
/**
8179
* Read Stream Extensions
82-
8380
*/
8481
implicit class ReadStreamExtensions(val stream: ReadStream) extends AnyVal {
8582

0 commit comments

Comments
 (0)