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

Remove author anotation #8

Merged
merged 1 commit into from
Jun 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/common/src/main/scala/io/scalajs/nodejs/Assert.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import scala.scalajs.js.annotation.JSImport
*
* The API for the assert module is Locked. This means that there will be no additions or changes to any of the
* methods implemented and exposed by the module.
* @author [email protected]
*/
@js.native
trait Assert extends IEventEmitter {
Expand Down Expand Up @@ -134,7 +133,6 @@ trait Assert extends IEventEmitter {

/**
* Assert Singleton
* @author [email protected]
*/
@js.native
@JSImport("assert", JSImport.Namespace)
Expand Down
2 changes: 0 additions & 2 deletions app/common/src/main/scala/io/scalajs/nodejs/Console.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import scala.scalajs.js.annotation.JSImport
* used without calling require('console').</li>
* </ul>
* @see https://nodejs.org/dist/latest-v8.x/docs/api/console.html
* @author [email protected]
*/
@js.native
@JSImport("console", "Console")
Expand Down Expand Up @@ -150,7 +149,6 @@ class Console(stdout: Writable, stderr: Writable = js.native) extends js.Object
* inspecting large complicated objects. Defaults to 2. To make it recurse indefinitely, pass null.
* @param colors if true, then the output will be styled with ANSI color codes. Defaults to false. Colors are customizable;
* see customizing util.inspect() colors.
* @author [email protected]
*/
class ConsoleDirOptions(var showHidden: js.UndefOr[Boolean] = js.undefined,
var depth: js.UndefOr[Int] = js.undefined,
Expand Down
2 changes: 0 additions & 2 deletions app/common/src/main/scala/io/scalajs/nodejs/Error.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import scala.scalajs.js.annotation.{JSGlobal, JSImport}
* Stack traces are dependent on V8's stack trace API. Stack traces extend only to either (a) the
* beginning of synchronous code execution, or (b) the number of frames given by the property
* Error.stackTraceLimit, whichever is smaller.
* @author [email protected]
*/
@js.native
@JSImport("errors", "Error")
Expand All @@ -33,7 +32,6 @@ class Error(message0: String = js.native) extends js.Object {

/**
* Error Singleton
* @author [email protected]
*/
@js.native
@JSGlobal
Expand Down
1 change: 0 additions & 1 deletion app/common/src/main/scala/io/scalajs/nodejs/Global.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import scala.scalajs.js
* In browsers, the top-level scope is the global scope. That means that in browsers if you're in the global scope var
* something will define a global variable. In Node.js this is different. The top-level scope is not the global scope;
* var something inside an Node.js module will be local to that module.
* @author [email protected]
*/
@js.native
trait Global extends js.Object {
Expand Down
2 changes: 0 additions & 2 deletions app/common/src/main/scala/io/scalajs/nodejs/Module.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import scala.scalajs.js.annotation.JSGlobal
* In each module, the module free variable is a reference to the object representing the current module.
* For convenience, module.exports is also accessible via the exports module-global. module isn't actually
* a global but rather local to each module.
* @author [email protected]
* @see [[https://nodejs.org/api/modules.html#modules_the_module_object]]
*/
@js.native
Expand Down Expand Up @@ -64,7 +63,6 @@ trait Module extends js.Object {

/**
* Module Companion
* @author [email protected]
*/
object Module {

Expand Down
2 changes: 0 additions & 2 deletions app/common/src/main/scala/io/scalajs/nodejs/Process.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import scala.scalajs.js.UndefOr

/**
* The process object is a global object and can be accessed from anywhere. It is an instance of EventEmitter.
* @author [email protected]
*/
@js.native
trait Process extends IEventEmitter {
Expand Down Expand Up @@ -406,7 +405,6 @@ trait Process extends IEventEmitter {

/**
* Process Object Companion
* @author [email protected]
*/
object Process {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import scala.scalajs.js.annotation.JSImport
/**
* To use this module, do require('string_decoder'). StringDecoder decodes a buffer to a string. It is a simple
* interface to [[Buffer.toString()]] but provides additional support for utf8.
* @author [email protected]
*/
@js.native
@JSImport("string_decoder", "StringDecoder")
Expand Down
2 changes: 0 additions & 2 deletions app/common/src/main/scala/io/scalajs/nodejs/SystemError.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import scala.scalajs.js.|

/**
* System Error
* @author [email protected]
*/
@js.native
@JSImport("errors", "SystemError")
Expand Down Expand Up @@ -52,7 +51,6 @@ class SystemError(message0: String = js.native) extends Error(message0) {

/**
* System Error Singleton
* @author [email protected]
*/
@js.native
@JSImport("errors", JSImport.Namespace)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import scala.scalajs.js.|
*
* The Buffer class is a global within Node.js, making it unlikely that one would need to ever use require('buffer').
* @see https://nodejs.org/api/buffer.html
* @author [email protected]
*/
@js.native
@JSImport("buffer", "Buffer")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import scala.scalajs.js.annotation.JSImport
* amount of time, it may be appropriate to create an un-pooled Buffer instance using SlowBuffer then copy
* out the relevant bits.
* @see https://nodejs.org/api/buffer.html#buffer_class_slowbuffer
* @author [email protected]
*/
@deprecated("Use Buffer.allocUnsafeSlow() instead.", since = "6.0.0")
@js.native
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import scala.scalajs.js

/**
* buffer package object
* @author [email protected]
*/
package object buffer {

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

/**
* Buffer Extensions
* @author [email protected]
*/
implicit class BufferExtensions(val buffer: Buffer) extends AnyVal {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import scala.scalajs.js
* value 'ipc' or an error will be thrown. For instance [0, 1, 2, 'ipc'].
* @param uid <Number> Sets the user identity of the process. (See setuid(2).)
* @param gid <Number> Sets the group identity of the process. (See setgid(2).)
* @author [email protected]
*/
class ForkOptions(val cwd: js.UndefOr[String] = js.undefined,
val env: js.Any = js.undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import scala.scalajs.js.|
* @param shell <Boolean> | <String> If true, runs command inside of a shell.
* Uses '/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be specified as a string.
* The shell should understand the -c switch on UNIX, or /d /s /c on Windows. Defaults to false (no shell).
* @author [email protected]
*/
class SpawnOptions(
val cwd: js.UndefOr[String] = js.undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import scala.scalajs.js

/**
* Address
* @author [email protected]
*/
@js.native
trait Address extends js.Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import scala.scalajs.js.annotation.JSImport
* sometimes want to launch a cluster of Node.js processes to handle the load.
*
* The cluster module allows you to easily create child processes that all share server ports.
* @author [email protected]
*/
@js.native
trait Cluster extends IEventEmitter {
Expand Down Expand Up @@ -113,7 +112,6 @@ trait Cluster extends IEventEmitter {

/**
* Cluster Singleton
* @author [email protected]
*/
@js.native
@JSImport("cluster", JSImport.Namespace)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import scala.scalajs.js
/**
* A Worker object contains all public information and method about a worker. In the master it can be obtained using
* cluster.workers. In a worker it can be obtained using cluster.worker.
* @author [email protected]
*/
@js.native
trait Worker extends IEventEmitter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import scala.scalajs.js
* </ul>
* The crypto.createCipher() or crypto.createCipheriv() methods are used to create Cipher instances. Cipher objects
* are not to be created directly using the new keyword.
* @author [email protected]
*/
@js.native
trait Cipher extends IDuplex {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import scala.scalajs.js.|
* The crypto module provides cryptographic functionality that includes a set of wrappers
* for OpenSSL's hash, HMAC, cipher, decipher, sign and verify functions.
* @see https://nodejs.org/dist/latest-v7.x/docs/api/crypto.html#crypto_crypto
* @author [email protected]
*/
@js.native
trait Crypto extends js.Object {
Expand Down Expand Up @@ -145,7 +144,6 @@ trait Crypto extends js.Object {

/**
* Crypto Singleton
* @author [email protected]
*/
@js.native
@JSImport("crypto", JSImport.Namespace)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import scala.scalajs.js
*
* The crypto.createDecipher() or crypto.createDecipheriv() methods are used to create Decipher instances.
* Decipher objects are not to be created directly using the new keyword.
* @author [email protected]
*/
@js.native
trait Decipher extends IDuplex {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import scala.scalajs.js
* </ul>
* The crypto.createHash() method is used to create Hash instances. Hash objects are not to be created directly using
* the new keyword.
* @author [email protected]
*/
@js.native
trait Hash extends IDuplex {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import scala.scalajs.js
*
* The crypto.createHmac() method is used to create Hmac instances. Hmac objects are not to be created directly using
* the new keyword.
* @author [email protected]
*/
@js.native
trait Hmac extends IDuplex {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import scala.scalajs.js
*
* The crypto.createSign() method is used to create Sign instances. Sign objects are not to be created directly using
* the new keyword.
* @author [email protected]
*/
@js.native
trait Sign extends IDuplex {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import scala.scalajs.js
* </ul>
* The crypto.createSign() method is used to create Sign instances. Sign objects are not to be created directly using
* the new keyword.
* @author [email protected]
*/
@js.native
trait Verify extends IDuplex {
Expand Down
2 changes: 0 additions & 2 deletions app/common/src/main/scala/io/scalajs/nodejs/dns/DNS.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import scala.scalajs.js.|
* looking to perform name resolution in the same way that other applications on the same operating system behave
* should use dns.lookup().
* @see https://nodejs.org/api/dns.html
* @author [email protected]
*/
@js.native
trait DNS extends js.Object {
Expand Down Expand Up @@ -236,7 +235,6 @@ trait DNS extends js.Object {

/**
* DNS Singleton
* @author [email protected]
*/
@js.native
@JSImport("dns", JSImport.Namespace)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import scala.scalajs.js
* ORing their values. See supported getaddrinfo flags for more information on supported flags.</li>
* @param all When true, the callback returns all resolved addresses in an array, otherwise returns a
* single address. Defaults to false.
* @author [email protected]
*/
class DnsOptions(var family: js.UndefOr[Int] = js.undefined,
var hints: js.UndefOr[Int] = js.undefined,
Expand Down
1 change: 0 additions & 1 deletion app/common/src/main/scala/io/scalajs/nodejs/dns/MX.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import scala.scalajs.js
* priority: 10
* }
* </pre>
* @author [email protected]
*/
@js.native
trait MX extends js.Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import scala.scalajs.js
* preference: 100
* }
* </pre>
* @author [email protected]
*/
@js.native
trait NAPTR extends js.Object {
Expand Down
1 change: 0 additions & 1 deletion app/common/src/main/scala/io/scalajs/nodejs/dns/SOA.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import scala.scalajs.js
* minttl: 3600
* }
* </pre>
* @author [email protected]
*/
@js.native
trait SOA extends js.Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import scala.scalajs.js.|

/**
* dns package object
* @author [email protected]
*/
package object dns {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ import scala.scalajs.js.annotation.JSImport
*
* The EventEmitter class is defined and exposed by the events module
* @see https://nodejs.org/api/events.html
* @author [email protected]
*/
@js.native
@JSImport("events", "EventEmitter")
class EventEmitter extends IEventEmitter

/**
* EventEmitter Interface
* @author [email protected]
*/
@js.native
trait IEventEmitter extends js.Object {
Expand Down Expand Up @@ -137,7 +135,6 @@ trait IEventEmitter extends js.Object {

/**
* EventEmitter Singleton
* @author [email protected]
*/
@js.native
@JSImport("events", JSImport.Namespace)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import scala.scalajs.js

/**
* An object containing commonly used constants for file system operations
* @author [email protected]
*/
@js.native
trait FSConstants extends js.Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import scala.scalajs.js

/**
* fs.FSWatcher - Objects returned from fs.watch() are of this type.
* @author [email protected]
*/
@js.native
trait FSWatcher extends IEventEmitter {
Expand All @@ -23,13 +22,11 @@ trait FSWatcher extends IEventEmitter {

/**
* File System Watcher Companion
* @author [email protected]
*/
object FSWatcher {

/**
* File System Watcher Extensions
* @author [email protected]
*/
implicit class FSWatcherExtensions(val watcher: FSWatcher) extends AnyVal {

Expand Down Expand Up @@ -67,7 +64,6 @@ object FSWatcher {
* @param persistent Indicates whether the process should continue to run as long as files are being watched (default: true)
* @param recursive Indicates whether all subdirectories should be watched, or only the current directory.
* The applies when a directory is specified, and only on supported platforms (See Caveats) (default: false)
* @author [email protected]
*/
class FSWatcherOptions(val encoding: js.UndefOr[String] = js.undefined,
val persistent: js.UndefOr[Boolean] = js.undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,11 @@ trait ReadStream extends Readable {

/**
* Read Stream Companion
* @author [email protected]
*/
object ReadStream {

/**
* Read Stream Events
* @author [email protected]
*/
implicit class ReadStreamEvents(val stream: ReadStream) extends AnyVal {

Expand All @@ -79,7 +77,6 @@ object ReadStream {

/**
* Read Stream Extensions
* @author [email protected]
*/
implicit class ReadStreamExtensions(val stream: ReadStream) extends AnyVal {

Expand Down
Loading