https://github.com/gavinning/lab
javascirpt lab
https://github.com/gavinning/lab
Last synced: 10 months ago
JSON representation
javascirpt lab
- Host: GitHub
- URL: https://github.com/gavinning/lab
- Owner: gavinning
- Created: 2012-08-10T16:21:02.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2017-05-03T05:03:47.000Z (over 8 years ago)
- Last Synced: 2025-03-01T23:04:32.242Z (11 months ago)
- Language: JavaScript
- Size: 55.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Lab

**Linco.lab**, 用于支持日常开发nodejs模块.
## Install
```sh
npm install linco.lab --save
```
```js
var lab = require('linco.lab');
```
```js
lab.isDir(__dirname) // => true
lab.isFile(__filename) // => true
lab.isSymlink(__dirname) // => false
```
```js
lab.now() // => 2015-12-12 16:12:10
lab.mkdir('/a/b/c/d') // => /a/b/c/d
```