Skip to content

Latest commit

 

History

History

move-path

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

move-path npm

Move path to destination folder.

Install

$ yarn add move-path

Usage

movePath(from, to)

Handles both relative and absolute from and to and returns an absolute destination path.

import movePath from 'move-path'

movePath('src/foo/bar/index.js', 'build/baz/')
// /absolute/build/baz/foo/bar/index.js

movePath('src/foo/bar/', 'build/baz/')
// /absolute/build/baz/foo/bar/

movePath('src/foo/bar/index.js', 'src/foo/')
// /absolute/src/foo/bar/index.js

movePath('src/foo/bar/', 'src/foo/bar')
// /absolute/src/foo/bar/

movePath('src/foo/bar/index.js', '/build/')
// /build/foo/bar/index.js

movePath('src/foo/bar/index.js', './')
// /absolute/src/foo/bar/index.js