You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
323 B

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
/**
* Remove one string from another, from the end.
* @param path A string
* @param key Another string cursor
*/
export function removeFromLast(path: string, key: string) {
const i = path.lastIndexOf(key);
return i === -1 ? path : path.substring(0, i);
}