🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@gamestdio/clock

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gamestdio/clock - npm Package Compare versions

Comparing version

to
1.1.8

2

package.json
{
"name": "@gamestdio/clock",
"version": "1.1.7",
"version": "1.1.8",
"description": "A simple clock/ticker implementation to track elapsed/delta time.",

@@ -5,0 +5,0 @@ "author": "Endel Dreyer <endel.dreyer@gmail.com>",

@@ -1,2 +0,2 @@

clock.js [![Build Status](https://secure.travis-ci.org/gamestdio/clock.js.png?branch=master)](http://travis-ci.org/gamestdio/clock.js)
@gamestdio/clock [![Build Status](https://secure.travis-ci.org/gamestdio/clock.js.png?branch=master)](http://travis-ci.org/gamestdio/clock.js)
===

@@ -29,4 +29,5 @@

```javascript
var clock = new Clock(true);
```typescript
import * as Clock from '@gamestdio/clock';
let clock = new Clock(true);
```

@@ -37,3 +38,4 @@

```javascript
var clock = new Clock();
import * as Clock from '@gamestdio/clock';
let clock = new Clock();
clock.start(true);

@@ -46,4 +48,4 @@ ```

```javascript
var Clock = require('clock.js');
```typescript
import * as Clock from '@gamestdio/clock';
var clock = new Clock();

@@ -50,0 +52,0 @@