Sha256: d5d314ea6b559f8cfe86bf3f2809ff5602b4a492a206152a3f2dc568c79361af
Contents?: true
Size: 1.94 KB
Versions: 6
Compression:
Stored size: 1.94 KB
Contents
# backtick_javascript: true require 'native' # Manipulate the browser console. # # @see https://developer.mozilla.org/en-US/docs/Web/API/console class Console include Native::Wrapper # Clear the console. def clear `#{@native}.clear()` end # Print a stacktrace from the call site. def trace `#{@native}.trace()` end # Log the passed objects based on an optional initial format. def log(*args) `#{@native}.log.apply(#{@native}, args)` end # Log the passed objects based on an optional initial format as informational # log. def info(*args) `#{@native}.info.apply(#{@native}, args)` end # Log the passed objects based on an optional initial format as warning. def warn(*args) `#{@native}.warn.apply(#{@native}, args)` end # Log the passed objects based on an optional initial format as error. def error(*args) `#{@native}.error.apply(#{@native}, args)` end # Time the given block with the given label. def time(label, &block) raise ArgumentError, 'no block given' unless block `#{@native}.time(label)` begin if block.arity == 0 instance_exec(&block) else yield(self) end ensure `#{@native}.timeEnd()` end end # Group the given block. def group(*args, &block) raise ArgumentError, 'no block given' unless block `#{@native}.group.apply(#{@native}, args)` begin if block.arity == 0 instance_exec(&block) else yield(self) end ensure `#{@native}.groupEnd()` end end # Group the given block but collapse it. def group!(*args, &block) return unless block_given? `#{@native}.groupCollapsed.apply(#{@native}, args)` begin if block.arity == 0 instance_exec(&block) else yield(self) end ensure `#{@native}.groupEnd()` end end end if defined?(`Opal.global.console`) $console = Console.new(`Opal.global.console`) end
Version data entries
6 entries across 6 versions & 1 rubygems