Function safeSet
- safeSet(
 data: object,
 accessor: string,
 value: any,
 options?: {
 createMissing?: boolean;
 operation?: "add" | "set" | "div" | "sub" | "mult" | "set-undefined";
 },
 ): booleanParameters- data: objectAn object to access entry data. 
- accessor: stringA string describing the entries to access. 
- value: anyA new value to set if an entry for accessor is found. 
- Optionaloptions: {
 createMissing?: boolean;
 operation?: "add" | "set" | "div" | "sub" | "mult" | "set-undefined";
 }- Options. - OptionalcreateMissing?: boolean- If - truemissing accessor entries will be created as objects automatically; default:- false.
- Optionaloperation?: "add" | "set" | "div" | "sub" | "mult" | "set-undefined"- Operation to perform including: - add,- div,- mult,- set,- set-undefined,- sub; default:- set.
 
 Returns booleanTrue if successful. 
- data: object
Provides a way to safely set an objects data / entries given an accessor string which describes the entries to walk. To access deeper entries into the object format the accessor string with
.between entries to walk.